1
0

fix: update setup script execution method for improved compatibility

This commit is contained in:
2025-08-04 20:53:09 -05:00
parent ebfb4b965d
commit c9ccdf3086

View File

@@ -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