fix: remove set -euo pipefail — kills shell when sourced

This commit is contained in:
Chris Christiansen 2026-05-27 23:46:22 +00:00
parent 63bd3d67a7
commit e91072a45c

View File

@ -11,7 +11,7 @@
# --- General Setup ---
# Exit on error, unset variable, or pipe failure.
set -euo pipefail
# set -euo pipefail # REMOVED: kills shell when sourced
# --- Pre-computation and Environment ---
OSVAUCO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"