Skip to content

Commit

Permalink
check if test-suite.log exists before cat
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobBarthelmeh committed Nov 12, 2024
1 parent 4e5a566 commit 9e18bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/fsanitize-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ jobs:
check: true
- name: display log
if: always()
run: cat test-suite.log
run: if [ -f test-suite.log ]; then cat test-suite.log; else echo "No test log"; fi

0 comments on commit 9e18bd8

Please sign in to comment.