Skip to content

Commit

Permalink
Merge pull request #16 from weseek/fix/parse-env-value
Browse files Browse the repository at this point in the history
fix parsing environment value "TARGET_BUCKET_URL"
  • Loading branch information
ryu-sato authored Apr 22, 2019
2 parents 9e012a5 + 56971b4 commit 8b82c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/boto.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash -e
if [ ! `echo $TARGET_BUCKET_URL | cut -f1 -d":"` == "gs" ]; then
if [ "`echo $TARGET_BUCKET_URL | cut -f1 -d':'`" != "gs" ]; then
exit 0
fi

Expand Down

0 comments on commit 8b82c19

Please sign in to comment.