Skip to content

Commit 311ea00

Browse files
authored
chore: simplified variable check condition (#404)
1 parent cee4c24 commit 311ea00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nethermind/nethermind-entrypoint

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fi
2525
mkdir -p "$NETHERMIND_DATA_DIR"
2626

2727
# Write the JWT secret
28-
if [[ -z "${OP_NODE_L2_ENGINE_AUTH_RAW:-}" ]]; then
28+
if [[ -z "$OP_NODE_L2_ENGINE_AUTH_RAW" ]]; then
2929
echo "Expected OP_NODE_L2_ENGINE_AUTH_RAW to be set" 1>&2
3030
exit 1
3131
fi

0 commit comments

Comments
 (0)