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 <noreply@anthropic.com>
This commit is contained in:
Sprite 2026-02-08 00:54:49 +00:00
parent 073251362f
commit 7c37ac172f

View file

@ -16,7 +16,7 @@
# spawn version Show version
# spawn help Show this help
set -uo pipefail
set -eo pipefail
# ── Constants ──────────────────────────────────────────────────────────────────