diff --git a/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh b/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh index e23b527ab..9dc77ab3a 100644 --- a/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh +++ b/Libraries/src/Amazon.Lambda.RuntimeSupport/bootstrap-al2023.sh @@ -7,7 +7,7 @@ # This means the default cert bundle file is double loaded causing a cold start performance hit. This logic # sets the SSL_CERT_FILE to an empty file if SSL_CERT_FILE hasn't been explicitly # set. This avoid the double load of the default cert bundle file. -if [ -z "${SSL_CERT_FILE}"]; then +if [ -z "${SSL_CERT_FILE}" ]; then export SSL_CERT_FILE="/var/runtime/empty-certificates.crt" fi @@ -129,4 +129,4 @@ else else exec -- "${AWS_LAMBDA_EXEC_WRAPPER}" "${DOTNET_BIN}" "${DOTNET_EXEC}" "${DOTNET_ARGS[@]}" fi -fi \ No newline at end of file +fi