Skip to content

Commit

Permalink
fix: missing ] breaking deploy (#301)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeff Ching <[email protected]>
  • Loading branch information
bcoe and chingor13 authored Feb 19, 2020
1 parent a308b31 commit f80a675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cron-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ proxyurl=$(gcloud beta run services describe serverless-scheduler-proxy \
cd packages || exit 1
for f in *; do
# Skip symlinks and our gcf-utils/generate-bot directory as it is not a function
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" ]; then
if [[ -d "$f" && ! -L "$f" && "$f" != "gcf-utils" && "$f" != "generate-bot" ]]; then
cd "$f" || exit 1
echo "$f"
for fx in *; do
Expand Down

0 comments on commit f80a675

Please sign in to comment.