Skip to content

Commit ee93d56

Browse files
committed
fix: improve environment variable handling in run.sh
Updated the conditional check for GENERATE_CLUSTER_CERTS to ensure proper parsing of the environment variable, enhancing script reliability.
1 parent d9e1fe0 commit ee93d56

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
@@ -90,7 +90,7 @@ if [ "${ENABLE_ERL_CRASH_DUMP:-false}" = true ]; then
9090
trap upload_crash_dump_to_s3 INT TERM KILL EXIT
9191
fi
9292

93-
if [[ -n "${GENERATE_CLUSTER_CERTS}" ]] ; then
93+
if [[ -n "${GENERATE_CLUSTER_CERTS:-}" ]] ; then
9494
generate_certs
9595
fi
9696

0 commit comments

Comments
 (0)