fix: add SC2059 to shellcheck disable in evals PR comment step

The SC2086 disable only covered the first command — the `for f in $RESULTS`
loop and printf-style string building triggered SC2086 and SC2059 warnings.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-03-23 16:08:26 -07:00
parent 7b2225cac5
commit e764dbb51f
+1 -1
View File
@@ -149,7 +149,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# shellcheck disable=SC2086
# shellcheck disable=SC2086,SC2059
RESULTS=$(find /tmp/eval-results -name '*.json' 2>/dev/null | sort)
if [ -z "$RESULTS" ]; then
echo "No eval results found"