Skip to content

Commit 12c3780

Browse files
committed
fix: Remove stray brace
1 parent 1a70e68 commit 12c3780

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fetch-params.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ environments:
1313
Options:
1414
-p, --project-id string Blockfrost API key (overrides BLOCKFROST_PROJECT_ID environment variable)
1515
-h, --help Show this help text
16-
}
1716
EOF
1817
}
1918

@@ -67,7 +66,7 @@ while true; do
6766
done
6867

6968
# Validate command line arguments
70-
if [[ "${HELP+DEFINED}" = true ]]; then
69+
if [[ -n "${HELP+DEFINED}" ]]; then
7170
usage
7271
exit 1
7372
fi

0 commit comments

Comments
 (0)