Skip to content

Commit 172fde9

Browse files
committed
fix ci pass/fail
1 parent 08e80fc commit 172fde9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/iwyu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ jobs:
6767
echo "include-what-you-use reported ${WARNING_COUNT} warning(s)"
6868
# Acceptable limit, to decrease over time down to 0
6969
export WARNING_LIMIT=10
70-
# FAIL the build if WARNING_COUNT >= WARNING_LIMIT
71-
exit $(( WARNING_COUNT >= WARNING_LIMIT ? 1 : 0 ))
70+
# FAIL the build if WARNING_COUNT > WARNING_LIMIT
71+
exit $(( WARNING_COUNT > WARNING_LIMIT ? 1 : 0 ))

0 commit comments

Comments
 (0)