Skip to content

Commit

Permalink
Merge pull request #15 from mveytsman/patch-1
Browse files Browse the repository at this point in the history
Fix bug making local-only impossible
  • Loading branch information
jsierles authored Feb 4, 2022
2 parents 372a8fc + 17cbece commit d81c6d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ fi
# Default to deploying with a remote builder unless local is specified explicitly
STRATEGY="--remote-only"

for i in "$*" ; do
for i in "$@" ; do
if [[ $i == "--local-only" ]] ; then
STRATEGY="--local-only"
STRATEGY=""
break
fi
done
Expand Down

0 comments on commit d81c6d5

Please sign in to comment.