From 7c37ac172fe50cedd22eba8b644b400a934a78d7 Mon Sep 17 00:00:00 2001 From: Sprite Date: Sun, 8 Feb 2026 00:54:49 +0000 Subject: [PATCH] refactor: drop nounset flag from cli/spawn.sh for consistency Changed set -uo pipefail to set -eo pipefail to align with commit #27 which removed nounset from all other scripts due to incompatibility with optional env var checks (SPRITE_NAME, OPENROUTER_API_KEY, etc.). This file was missed in the original nounset removal sweep. Co-Authored-By: Claude Sonnet 4.5 --- cli/spawn.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/spawn.sh b/cli/spawn.sh index aa9dc148..973811a7 100755 --- a/cli/spawn.sh +++ b/cli/spawn.sh @@ -16,7 +16,7 @@ # spawn version Show version # spawn help Show this help -set -uo pipefail +set -eo pipefail # ── Constants ──────────────────────────────────────────────────────────────────