Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit 77e1443

Browse files
author
Kent C. Dodds
committed
fix(build): Hide output so people can't pretend to be the bot
1 parent b286dce commit 77e1443

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/publish-latest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ git config --global user.email [email protected]
88
git config --global user.name formly-bot
99

1010
echo "setting remote"
11-
git remote set-url origin https://formly-bot:$BOT_GH_TOKEN@github.com/formly-js/angular-formly.git
11+
git remote set-url origin https://formly-bot:$BOT_GH_TOKEN@github.com/formly-js/angular-formly.git >/dev/null 2>/dev/null
1212

1313
echo "merging master"
1414
git merge origin/master -m "master merge" -X theirs
@@ -23,7 +23,7 @@ echo "tagging with v$F_VERSION"
2323
git tag v${F_VERSION} -f
2424

2525
echo "pushing"
26-
git push origin HEAD:latest --tags -f
26+
git push origin HEAD:latest --tags -f >/dev/null 2>/dev/null
2727

2828
echo "done!"
2929

0 commit comments

Comments
 (0)