ci: fix reference to nonexistent $dir var in ci-comment workflow
This commit is contained in:
committed by
Chris Rizzitello
parent
67066c339e
commit
fe285dc192
2
.github/workflows/ci-comment.yml
vendored
2
.github/workflows/ci-comment.yml
vendored
@ -65,7 +65,7 @@ jobs:
|
||||
run: |
|
||||
ls -R
|
||||
|
||||
files=$(find $dir -type f)
|
||||
files=$(find summaries -type f 2>/dev/null || true)
|
||||
if [ -z "$files" ]; then
|
||||
echo "No files found in dir: $dir"
|
||||
exit 0
|
||||
|
||||
Reference in New Issue
Block a user