Skip to content

Commit 99e440e

Browse files
committed
build: inverse if statement condition
1 parent 694732a commit 99e440e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
output=$(<test-output.txt)
2727
cleaned_output=$(echo "$output" | sed 's/\x1b\[[0-9;]*m//g')
2828
cleaned_output=$(echo "$cleaned_output" | sed 's/\x1b\[0m$//')
29-
if [[ ! $cleaned_output =~ Failed:\ 0$ ]]; then
29+
if [[ $cleaned_output =~ Failed:\ 0$ ]]; then
3030
exit 0
3131
else
3232
exit 1

0 commit comments

Comments
 (0)