Skip to content

Commit

Permalink
chore: simplified variable check condition (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkazak authored Feb 11, 2025
1 parent cee4c24 commit 311ea00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nethermind/nethermind-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fi
mkdir -p "$NETHERMIND_DATA_DIR"

# Write the JWT secret
if [[ -z "${OP_NODE_L2_ENGINE_AUTH_RAW:-}" ]]; then
if [[ -z "$OP_NODE_L2_ENGINE_AUTH_RAW" ]]; then
echo "Expected OP_NODE_L2_ENGINE_AUTH_RAW to be set" 1>&2
exit 1
fi
Expand Down

0 comments on commit 311ea00

Please sign in to comment.