Skip to content

Commit b776ee2

Browse files
change where we do the file mod, deploy2.sh not picking up changes, says everything up to date
1 parent 0ec6ed4 commit b776ee2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

travis-ci/changefile.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ git config --global push.default simple
2525
#export GIT_TAG=V2.$YEAR-$MONTH.$TRAVIS_BUILD_NUMBER
2626
#msg="Tag Generated from TravisCI for build $TRAVIS_BUILD_NUMBER"
2727
#echo "$msg" >> $TRAVIS_BUILD_DIR/build.txt
28-
sudo $TRAVIS_BUILD_DIR/travis-ci/modify-globalblacklist.sh
28+
#sudo $TRAVIS_BUILD_DIR/travis-ci/modify-globalblacklist.sh
2929
#sudo git add $TRAVIS_BUILD_DIR/globalblacklist.conf
30-
git add -A .
30+
#git add -A .
3131
#git add $TRAVIS_BUILD_DIR/build.txt
32-
git commit -m "Update build version file with $TRAVIS_BUILD_NUMBER"
32+
#git commit -m "Update build version file with $TRAVIS_BUILD_NUMBER"
3333

3434
#YEAR=$(date +"%Y")
3535
#MONTH=$(date +"%m")

travis-ci/deploy2.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ git fetch --tags
1111
msg="Tag $GIT_TAG Generated from TravisCI for build $TRAVIS_BUILD_NUMBER"
1212
#if git tag $GIT_TAG -a -m "$msg" 2>/dev/null; then
1313
git tag $GIT_TAG -a -m "Tag $GIT_TAG Generated from TravisCI for build $TRAVIS_BUILD_NUMBER"
14+
sudo $TRAVIS_BUILD_DIR/travis-ci/modify-globalblacklist.sh
15+
#sudo git add $TRAVIS_BUILD_DIR/globalblacklist.conf
16+
git add -A .
17+
#git add $TRAVIS_BUILD_DIR/build.txt
18+
git commit -m "Update build version file with $TRAVIS_BUILD_NUMBER"
1419
git push origin master && git push origin master --tags
1520
ls -aR
1621
#else echo Tag already exists!; fi

0 commit comments

Comments
 (0)