Drop nounset (set -u) flag — incompatible with env var checks (#27)

The autonomous refactoring added `set -euo pipefail` but the scripts
check optional env vars with `[[ -n "$VAR" ]]` which is a fatal error
under nounset when the var isn't set (e.g. SPRITE_NAME, OPENROUTER_API_KEY).

Fix: downgrade to `set -eo pipefail` across all 42 affected files.

Co-authored-by: Sprite <noreply@sprite.dev>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
L 2026-02-07 16:22:04 -08:00 committed by GitHub
parent 7e952d1310
commit 4087deb14e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
50 changed files with 776 additions and 64 deletions

6
cli/.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
node_modules/
cli.js
spawn
dist/
bun.lock
*.tgz