Skip to content

Commit

Permalink
Fix conditional bracketing for sh shell
Browse files Browse the repository at this point in the history
  • Loading branch information
f-galland committed Nov 20, 2024
1 parent dfb89b1 commit 8ff89d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mkdir -p "$TMP_DIR"
# If demo certificates are explicitly solicited
# (ie. for dockerized cluster test environments)
# then, use hardcoded certs.
if [[$USE_DEMO_CERTS == "true" ]]
if [ ${USE_DEMO_CERTS:-false} = "true" ]
then
cat <<'ADMIN_KEY' > $TMP_DIR/admin-key.pem
-----BEGIN PRIVATE KEY-----
Expand Down

0 comments on commit 8ff89d6

Please sign in to comment.