Skip to content

Commit

Permalink
Fix fetchRemote dev script to be sh compatible (#406)
Browse files Browse the repository at this point in the history
(meta)
  • Loading branch information
tmns committed May 4, 2020
1 parent e688267 commit a7fd429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fetchRemote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

if [[ $(git remote -v | grep 'upstream' | wc -l) -eq 0 ]]; then
if test "$(git remote -v | grep 'upstream' | wc -l)" = 0; then
echo "Upstream remote not found, adding one"
git remote add upstream https://github.com/blitz-js/blitz.git
fi
Expand Down

0 comments on commit a7fd429

Please sign in to comment.