fix: resolve unbound variable error in deploy script migration check #17
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature-deploy-script"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The APPLIED_MIGRATIONS associative array triggered "unbound variable"
under set -u when empty (first run / seed-existing). Fix by initializing
with =() and using a safe helper function with ${:-} default syntax.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
The APPLIED_MIGRATIONS associative array triggered "unbound variable" under set -u when empty (first run / seed-existing). Fix by initializing with =() and using a safe helper function with ${:-} default syntax. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>