File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,6 @@ git config --global user.name "travis-ci"
8989git commit -m " Update docs after merge to master."
9090# NOTE: This may fail if two docs updates (on merges to master)
9191# happen in close proximity.
92- git push \
92+ git push -q \
9393 " https://${GH_OAUTH_TOKEN} @github.com/${GH_OWNER} /${GH_PROJECT_NAME} " \
9494 HEAD:gh-pages
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function buildDocs () {
1313function pushDocs () {
1414 echo " Deploying JSON documentation..."
1515 if [[ ! -d " ghpages" ]]; then
16- git submodule add -f -b gh-pages https://${GH_OAUTH_TOKEN} @github.com/${GH_OWNER} /${GH_PROJECT_NAME} ghpages
16+ git submodule add -q - f -b gh-pages https://${GH_OAUTH_TOKEN} @github.com/${GH_OWNER} /${GH_PROJECT_NAME} ghpages
1717 fi
1818 mkdir -p ghpages/json/${1}
1919 cp -R docs/_build/json_build/* ghpages/
@@ -24,7 +24,7 @@ function pushDocs () {
2424 git config user.email " travis@travis-ci.org"
2525 git commit -m " Updating docs for ${1} "
2626 git status
27- git push https://${GH_OAUTH_TOKEN} @github.com/${GH_OWNER} /${GH_PROJECT_NAME} HEAD:gh-pages
27+ git push -q https://${GH_OAUTH_TOKEN} @github.com/${GH_OWNER} /${GH_PROJECT_NAME} HEAD:gh-pages
2828 else
2929 echo " Nothing to commit."
3030 fi
@@ -35,7 +35,7 @@ function pushDocs () {
3535
3636function cleanSubmodule () {
3737 echo " Cleaning up!"
38- git submodule deinit -f ghpages
38+ git submodule deinit -q - f ghpages
3939 git reset HEAD .gitmodules
4040 git reset HEAD ghpages
4141 rm -rf ghpages
You can’t perform that action at this time.
0 commit comments