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

Commit 11fef38

Browse files
author
Kent C. Dodds
committed
fix(build): not hiding stuf
1 parent c84d3b8 commit 11fef38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/publish-latest.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ 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 github https://formly-bot:${BOT_GH_TOKEN}@github.com/formly-js/angular-formly.git >/dev/null 2>/dev/null
11+
git remote set-url github https://formly-bot:${BOT_GH_TOKEN}@github.com/formly-js/angular-formly.git
1212

1313
echo "merging master"
14-
git merge github/master -m "master merge" -X theirs >/dev/null 2>/dev/null
14+
git merge github/master -m "master merge" -X theirs
1515

1616
echo "adding dist"
1717
git add dist package.json
@@ -23,7 +23,7 @@ echo "tagging with v$F_VERSION"
2323
git tag v${F_VERSION} -f
2424

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

2828
echo "done!"
2929

0 commit comments

Comments
 (0)