From d625bf1c23f2eabf2c1aa3519f40bc741c6e4e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 27 Nov 2025 11:41:21 +0100 Subject: [PATCH] feat: SKIP_ARTY_SETUP env --- start.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/start.sh b/start.sh index ef1f32d..1dbc9a0 100644 --- a/start.sh +++ b/start.sh @@ -46,10 +46,14 @@ echo " ✓ PATH updated: $PWD/bin added" # [4/7] Setting up with arty echo "[4/7] Setting up with arty..." -cd "$PWD/orchestrator" -arty setup -cd - -echo " ✓ Setup complete" +if [ ! "$SKIP_ARTY_SETUP" ] ; then + cd "$PWD/orchestrator" + arty setup + cd - + echo " ✓ Setup complete" +else + echo " ⏭ Skipping" +fi # Display connection information echo ""