From b08c9acb29cc19156e7df116e4088b96b8613fa6 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Mon, 4 Aug 2025 20:53:09 -0500 Subject: [PATCH] fix: update setup script execution method for improved compatibility --- bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index e8a1719..fbeb216 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -77,7 +77,8 @@ fi # Hand off to setup if [ -f "setup.sh" ]; then echo "Starting setup..." - exec "./setup.sh" + chmod +x setup.sh 2>/dev/null || true + bash setup.sh else echo "Error: No setup.sh found!" exit 1