Test Script Changes

This commit is contained in:
Mitchell Krog 2018-08-21 16:22:06 +02:00
parent 375c9d7997
commit e5b37f7c6f
No known key found for this signature in database
GPG key ID: EA1DD210CACCC45E
2 changed files with 21 additions and 21 deletions

View file

@ -50,20 +50,20 @@ MONTH=$(date +"%m")
# Make Sure we are in the Build Directory
# ***************************************
cd $TRAVIS_BUILD_DIR
cd ${TRAVIS_BUILD_DIR}
sudo git remote -v
# *************************
# Create our Version Number
# *************************
export GIT_TAG=V3.$YEAR.$MONTH.$TRAVIS_BUILD_NUMBER
export GIT_TAG=V3.${YEAR}.${MONTH}.${TRAVIS_BUILD_NUMBER}
# ***************
# Tag our release
# ***************
git tag $GIT_TAG -a -m "V3.$YEAR.$MONTH.$TRAVIS_BUILD_NUMBER"
git tag ${GIT_TAG} -a -m "V3.${YEAR}.${MONTH}.${TRAVIS_BUILD_NUMBER}"
# *****************************************
# Push our commit and tags back to the repo