Cleaning build script.

This commit is contained in:
Amine Bou 2018-05-25 22:47:36 +02:00
parent e11dee220f
commit 91e5d3736f
2 changed files with 4 additions and 4 deletions

View File

@ -7,4 +7,4 @@ VERSION="${BASE_VERSION}.$(date '+%y%m%j')$TODAYS_VERSION"
./version.sh ${VERSION} $@ ./version.sh ${VERSION} $@
./publish-version.sh ${VERSION} $@ ./publish-version.sh ${VERSION}

View File

@ -1,10 +1,10 @@
#!/bin/bash #!/bin/bash
# You can pass --force as first parameter to force push and tag creation. # You can pass --force as first parameter to force push and tag creation.
echo "Creating tag $1" echo "Creating tag $@"
git tag $1 $@ git tag $@
echo "Pushing tag" echo "Pushing tag"
git push origin $1 $@ git push origin $@