Skip to content

Commit ed31e7c

Browse files
committed
changed error condition
1 parent cbb7fb1 commit ed31e7c

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
@@ -23,4 +23,4 @@ jobs:
2323
path: apply.txt
2424
- name: check apply log for error
2525
run: |
26-
if grep '^ERR' apply.txt; then exit 1; fi
26+
if [ -s apply.txt ]; then exit 1; fi

0 commit comments

Comments
 (0)