Skip to content

Commit

Permalink
Don't error when no bandwhich stderr files are found
Browse files Browse the repository at this point in the history
  • Loading branch information
cyqsimon committed Apr 15, 2024
1 parent 82fb1b8 commit 5371f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
shell: bash
run: |
# it's probably okay to assume no spaces?
STDERR_FILES=$(find "./target/debug" -name stderr | grep bandwhich)
STDERR_FILES=$(find "./target/debug" -name stderr | grep bandwhich || true)
for FILE in $STDERR_FILES; do
echo "::group::$FILE"
cat "$FILE"
Expand Down

0 comments on commit 5371f6a

Please sign in to comment.