Skip to content

Commit

Permalink
validate expectations with true
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-dull committed Oct 4, 2024
1 parent 1a0f37e commit f268ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
do
# set +e
# OK=$(curl -Ss -o /dev/null -w "%{http_code}" http://localhost:2442 || true)
OK=$(curl -Ss -o /dev/null -w "%{http_code}")
OK=$(curl -Ss -o /dev/null -w "%{http_code}" || true)
# set -e
if [ ${OK} -ne 200 ]; then
echo "waiting..."
Expand Down

0 comments on commit f268ddb

Please sign in to comment.