feat: SKIP_ARTY_SETUP env
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 1m25s

This commit is contained in:
2025-11-27 11:41:21 +01:00
parent 44742a1fb4
commit d625bf1c23

View File

@@ -46,10 +46,14 @@ echo " ✓ PATH updated: $PWD/bin added"
# [4/7] Setting up with arty # [4/7] Setting up with arty
echo "[4/7] Setting up with arty..." echo "[4/7] Setting up with arty..."
cd "$PWD/orchestrator" if [ ! "$SKIP_ARTY_SETUP" ] ; then
arty setup cd "$PWD/orchestrator"
cd - arty setup
echo " ✓ Setup complete" cd -
echo " ✓ Setup complete"
else
echo " ⏭ Skipping"
fi
# Display connection information # Display connection information
echo "" echo ""