From 2e355ed9723ba6042133ec1097053ba24188e271 Mon Sep 17 00:00:00 2001 From: Denis Lugowski Date: Sat, 29 Nov 2025 10:02:41 +0100 Subject: [PATCH] fix(pipeline): Launch in external iTerm window to overcome deployment issue --- pipeline.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/pipeline.sh b/pipeline.sh index 32b041c..c1c4589 100755 --- a/pipeline.sh +++ b/pipeline.sh @@ -65,6 +65,9 @@ EXAMPLES: ENVIRONMENT: GIT_SHA Git commit SHA (default: current HEAD) +NOTE: + On macOS, the script will automatically launch in a new iTerm window. + EOF exit 0 } @@ -307,6 +310,30 @@ run_jobs() { log_success "All jobs completed successfully" } +launch_in_iterm() { + log_info "Launching pipeline in new iTerm window..." + + local script_path="$0" + local args="" + + for arg in "$@"; do + args="$args $arg" + done + + osascript <