From 84d7167b4d676d548a088ee48b4a95482cce0647 Mon Sep 17 00:00:00 2001 From: BIRK Renaud <renaud.birk@imt-atlantique.net> Date: Sun, 9 Mar 2025 11:17:51 +0100 Subject: [PATCH] fix: update setup with correct command --- setup.bat | 2 +- setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.bat b/setup.bat index 606dc06..eff89b6 100644 --- a/setup.bat +++ b/setup.bat @@ -4,4 +4,4 @@ if %ERRORLEVEL% NEQ 0 ( python3 -m pip install -r .\requirements.txt ) echo Setup complete -echo You can launch the program by running 'python3 .\src\main.py' +echo You can launch the program by running 'run.bat' file. diff --git a/setup.sh b/setup.sh index 51dcc32..bd4e303 100644 --- a/setup.sh +++ b/setup.sh @@ -1,4 +1,4 @@ chmod +rx requirements.txt pip3 install -r requirements.txt || python3 -m pip install -r requirements.txt echo "Setup complete" -echo "You can launch the program by running 'python3 src/main.py'" +echo "You can launch the program by running 'chmod +x ./run.sh && ./run.sh'" -- GitLab