From 51cc01dbf8f20b31e6b0096179f0a629af1223ef Mon Sep 17 00:00:00 2001 From: DeuZa Date: Mon, 23 Mar 2026 08:46:30 +0100 Subject: [PATCH] fix: add dos2unix step for Mac/Linux Quick Start When downloading the .zip from GitHub Releases, start.sh may contain Windows-style line endings (\r\n) that cause the script to fail on Mac/Linux. Adding a dos2unix start.sh step before chmod +x fixes the issue. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b577415..9202639 100644 --- a/README.md +++ b/README.md @@ -426,7 +426,7 @@ If you just want to run the dashboard without dealing with terminal commands: 2. Download the latest `.zip` file from the release. 3. Extract the folder to your computer. 4. **Windows:** Double-click `start.bat`. - **Mac/Linux:** Open terminal, type `chmod +x start.sh`, and run `./start.sh`. + **Mac/Linux:** Open terminal, type `chmod +x start.sh`, `dos2unix start.sh`, and run `./start.sh`. 5. It will automatically install everything and launch the dashboard! ---