ci: fix reference to nonexistent $dir var in ci-comment workflow

This commit is contained in:
Nick Bolton
2026-02-12 13:28:22 +00:00
committed by Chris Rizzitello
parent 67066c339e
commit fe285dc192

View File

@ -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