Skip to content

Commit c38edb7

Browse files
authored
ci: fix HTTP status code check in build-report.yml
1 parent f680e27 commit c38edb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
fi
6161
6262
# Verify other errors
63-
if ! [ "$HTTP_CODE" -ge 400 ]; then
63+
if [ "$HTTP_CODE" -ge 400 ]; then
6464
echo -e "\e[91m❌ Error: Unexpected HTTP status code ($HTTP_CODE).\e[0m" >&2
6565
log_pat_error
6666
exit 1

0 commit comments

Comments
 (0)