All git commands in github_pages.sh are now `--quiet`

This commit is contained in:
Michael Bryan 2017-12-30 23:31:32 +08:00
parent 65900b87e6
commit 9480ac0ea6
No known key found for this signature in database
GPG Key ID: E9C602B0D9A998DC
1 changed files with 5 additions and 5 deletions

View File

@ -37,14 +37,14 @@ git config user.name "Michael Bryan"
git config user.email "michaelfbryan@gmail.com"
git remote add upstream "https://$GH_TOKEN@github.com/rust-lang-nursery/mdBook.git"
git fetch upstream
git reset upstream/gh-pages
git fetch upstream --quiet
git reset upstream/gh-pages --quiet
touch .
echo -e "${CYAN}Pushing changes to gh-pages${NC}"
git add -A .
git commit -m "rebuild pages at ${rev}"
git push -q upstream HEAD:gh-pages
git add -A . --quiet
git commit -m "rebuild pages at ${rev}" --quiet
git push -q upstream HEAD:gh-pages --quiet
echo -e "${GREEN}Deployed docs to GitHub Pages${NC}"