fix: Source launcher in current shell instead of subshell - keeps menu interactive

This commit is contained in:
Developer
2026-03-19 20:22:01 -04:00
parent c7080d04b6
commit 9048066a49
+2 -2
View File
@@ -29,8 +29,8 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
exit 1
fi
# Run the launcher
bash "$SCRIPT_DIR/launcher.sh"
# Run the launcher (source in current shell, don't execute in subshell)
source "$SCRIPT_DIR/launcher.sh"
# Check if cleanup is requested
if [ -f /tmp/.cleanup_requested ]; then