HoloPanio 4fa13a1d28 fix(migrate): fix set -e swallowing prisma output on failure
POSIX sh exits a script on the assignment line when command substitution
exits non-zero under set -e -- before the subsequent echo ever runs.

  DEPLOY_OUTPUT=$(cmd 2>&1)   # <- script exits here if cmd fails
  EXIT_CODE=$?
  echo "$DEPLOY_OUTPUT"       # <- never reached

Fix: use the || idiom, which puts the LHS in a compound-command context
where set -e does not apply, and still captures the real exit code:

  EXIT_CODE=0
  DEPLOY_OUTPUT=$(cmd 2>&1) || EXIT_CODE=$?
  echo "$DEPLOY_OUTPUT"       # <- always runs

Applied the same fix to the resolve call.
2026-04-08 14:31:22 +00:00
2026-04-07 23:56:31 +00:00
2026-04-08 03:09:27 +00:00
2026-04-07 23:56:31 +00:00
2026-04-07 23:56:31 +00:00
2026-03-22 17:43:55 -05:00
2026-03-22 17:21:08 -05:00
2026-03-22 17:21:08 -05:00

optima

The primary repository for Optima.

S
Description
No description provided
Readme GPL-3.0 42 MiB
Languages
TypeScript 64.3%
Svelte 23.1%
CSS 5.6%
TSQL 5.4%
Python 1%
Other 0.5%