From 9c0c09e1c5c89c6291622540b1456fcb8f36673f Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sun, 25 Jan 2026 23:47:35 +0100 Subject: [PATCH] fix: handle empty args array in pi-test.sh --- pi-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pi-test.sh b/pi-test.sh index e50e54b1..665e6408 100755 --- a/pi-test.sh +++ b/pi-test.sh @@ -53,4 +53,4 @@ if [[ "$NO_ENV" == "true" ]]; then echo "Running without API keys..." fi -npx tsx "$SCRIPT_DIR/packages/coding-agent/src/cli.ts" "${ARGS[@]}" +npx tsx "$SCRIPT_DIR/packages/coding-agent/src/cli.ts" ${ARGS[@]+"${ARGS[@]}"}