I swear I committed forwarding arguments from the start scripts

master
mrq 2023-02-19 15:01:16 +07:00
parent 3891870b5d
commit f4e82fcf08
2 changed files with 2 additions and 2 deletions

@ -1,5 +1,5 @@
call .\venv\Scripts\activate.bat
set PATH=.\bin\;%PATH%
python .\src\main.py
python .\src\main.py %*
deactivate
pause

@ -1,4 +1,4 @@
#!/bin/bash
source ./venv/bin/activate
python3 ./src/main.py
python3 ./src/main.py "$@"
deactivate