Allow start scripts to have command-line flags

This commit is contained in:
oobabooga 2023-09-22 10:03:56 -07:00
parent 8ab3eca9ec
commit 3314b7d795
7 changed files with 8 additions and 8 deletions

2
wsl.sh
View file

@ -106,5 +106,5 @@ fi
# setup installer env update env if called with 'wsl.sh update'
case "$1" in
("update") python webui.py --update;;
(*) python webui.py;;
(*) python webui.py $@;;
esac