Skip to content

Commit 5371f6a

Browse files
committed
Don't error when no bandwhich stderr files are found
1 parent 82fb1b8 commit 5371f6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
shell: bash
121121
run: |
122122
# it's probably okay to assume no spaces?
123-
STDERR_FILES=$(find "./target/debug" -name stderr | grep bandwhich)
123+
STDERR_FILES=$(find "./target/debug" -name stderr | grep bandwhich || true)
124124
for FILE in $STDERR_FILES; do
125125
echo "::group::$FILE"
126126
cat "$FILE"

0 commit comments

Comments
 (0)