From 0c006f12adfe662ae99a4823d4c6a9f8b4d4aef0 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Wed, 24 Jun 2026 15:21:26 -0700 Subject: [PATCH] fix(ci): guard rm expansion in pty-smoke registry (shellcheck SC2115) --- .github/workflows/evals.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/evals.yml b/.github/workflows/evals.yml index d10cf69a1..af953fe9b 100644 --- a/.github/workflows/evals.yml +++ b/.github/workflows/evals.yml @@ -202,7 +202,7 @@ jobs: # cross-mount symlink). Copy SKILL.md + sections as real files so the TUI # reads them directly. for s in office-hours plan-ceo-review; do - rm -rf "$SKILLS_DIR/$s" + rm -rf "${SKILLS_DIR:?}/$s" mkdir -p "$SKILLS_DIR/$s" cp "$REPO/$s/SKILL.md" "$SKILLS_DIR/$s/SKILL.md" cp -R "$REPO/$s/sections" "$SKILLS_DIR/$s/sections"