Skip to content

Commit

Permalink
Suppressed the git commit output from post build
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentGoderre committed Apr 3, 2013
1 parent 757a0e8 commit 98bebfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/post_build.sh
Expand Up @@ -28,7 +28,7 @@ if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_REPO_SLUG" == "wet-boew/

git checkout -B gh-pages
git add - dist/.
git commit -m "Travis build $TRAVIS_BUILD_NUMBER pushed to gh-pages"
git commit -q -m "Travis build $TRAVIS_BUILD_NUMBER pushed to gh-pages"
git push -fq upstream gh-pages > /dev/null

echo -e "Finished updating the working examples\n"
Expand All @@ -40,7 +40,7 @@ if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_REPO_SLUG" == "wet-boew/

git checkout -B gh-pages
git add -f dist/.
git commit -m "Travis build $TRAVIS_BUILD_NUMBER pushed to gh-pages"
git commit -q -m "Travis build $TRAVIS_BUILD_NUMBER pushed to gh-pages"
git push -fq experimental gh-pages > /dev/null

echo -e "Finished updating the experimental working examples\n"
Expand All @@ -67,7 +67,7 @@ if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_REPO_SLUG" == "wet-boew/
git add -f demos
git add -f test
git add -f *.*
git commit -m "Travis build $TRAVIS_BUILD_NUMBER pushed to $TRAVIS_BRANCH"
git commit -q -m "Travis build $TRAVIS_BUILD_NUMBER pushed to $TRAVIS_BRANCH"
git push -fq origin $build_branch > /dev/null

#Create the dist without the GC themes
Expand All @@ -78,7 +78,7 @@ if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_REPO_SLUG" == "wet-boew/
git rm -qrf demos/theme-gcwu-fegc
git rm -qrf dist/theme-intranet
git rm -qrf demos/theme-intranet
git commit -m "Travis build $TRAVIS_BUILD_NUMBER pushed to $TRAVIS_BRANCH"
git commit -q -m "Travis build $TRAVIS_BUILD_NUMBER pushed to $TRAVIS_BRANCH"
git push -fq origin master-base-dist > /dev/null
fi

Expand Down

0 comments on commit 98bebfb

Please sign in to comment.