Skip to content

Commit 70c20fe

Browse files
committed
Fixes GCS_BUCKET environment variable check.
1 parent 6d7fc08 commit 70c20fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ USAGE="docker run -e GCS_BUCKET=yet-another-docker-bucket \
1111
-p 5000:5000 \
1212
[--volumes-from gcloud-config] google/docker-registry"
1313

14-
if [[ -z GCS_BUCKET ]]; then
14+
if [[ -z "${GCS_BUCKET}" ]]; then
1515
echo "GCS_BUCKET not defined"
1616
echo
1717
echo "$USAGE"

0 commit comments

Comments
 (0)