Skip to content

Commit 4ad28ee

Browse files
committed
fix TAG calculation in build script
1 parent 2501984 commit 4ad28ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ REVISION=`git --no-replace-objects describe --match v$MAJOR.$MINOR`
2727
REVISION=${REVISION:5} # drop the first 5 characters
2828
REVISION=${REVISION:0:${#REVISION}-9} # drop the last 9 characters
2929

30-
TAG=r$REVISION
30+
TAG=v$MAJOR.$MINOR.$REVISION
3131

3232
sed -e s/CLOJURESCRIPT_VERSION/$MAJOR.$MINOR.$REVISION/ < "$POM_TEMPLATE" > "$POM_FILE"
3333

0 commit comments

Comments
 (0)