Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
Connor O'Hara committed Jul 26, 2023
1 parent ac96adf commit 1535918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gm-tester.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ while [[ $RETRY_COUNT -lt $MAX_RETRIES ]]; do
RESULT=$(curl -s "$URL" | jq '.result')

# Compare the result with the expected string or null string
if ["$RESULT" != "null"]; then
if [["$RESULT" != "null"]]; then
echo "Success! The result is now not null. Specifically, it's:"
echo $RESULT
exit 0
Expand Down

0 comments on commit 1535918

Please sign in to comment.