diff --git a/version.sh b/version.sh index 67afe93..41413ff 100755 --- a/version.sh +++ b/version.sh @@ -1,9 +1,8 @@ #!/bin/bash -# You can pass --force as first parameter to force push and tag creation. -echo "Creating tag $@" +echo "Creating tag $1" -TAG="v$@" +TAG="v$1" git tag -a ${TAG} if [[ "$@" == *'--from-ci'* ]]