Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Dec 12, 2024
1 parent 2c3cafb commit 2c4245b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-database-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
fi
# Quit the loop if the maintenance page is disabled (meaning the update is done)
if echo "$OUTPUT" | grep "Disabling maintenance page"; then
if echo "$OUTPUT" | grep -q "Disabling maintenance page"; then
break
fi
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
fi
# Quit the loop if the maintenance page is disabled (meaning the update is done)
if echo "$OUTPUT" | grep "Disabling maintenance page"; then
if echo "$OUTPUT" | grep -q "Disabling maintenance page"; then
break
fi
Expand Down

0 comments on commit 2c4245b

Please sign in to comment.