From 71d0f225654cc9b3b2040f8d9414ddbcee213991 Mon Sep 17 00:00:00 2001 From: Blasted <106544092+Blasted246@users.noreply.github.com> Date: Mon, 6 Oct 2025 17:30:20 -0700 Subject: [PATCH] Update README.md Fix a potential error where user says no to starting the server now then can't start it later due to run.sh not being executable --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b8b87cab..5333b8a4 100644 --- a/README.md +++ b/README.md @@ -82,10 +82,10 @@ echo "" echo "✅ Installation complete!" echo "" read -p "Would you like to start the server now? (y/n): " -n 1 -r +chmod +x run.sh echo "" if [[ $REPLY =~ ^[Yy]$ ]]; then echo "🌐 Starting server on http://localhost:5000" - chmod +x run.sh ./run.sh else echo "To start the server later, run: cd waldo&& ./run.sh"