Convert replit run + onBoot commands to arrays
Apparently Replit requires these values to be arrays now instead of strings.main
parent
b39ba0533a
commit
076948dd0e
4
.replit
4
.replit
|
@ -1,3 +1,3 @@
|
||||||
language = "bash"
|
language = "bash"
|
||||||
run = "killall -q python3 > /dev/null 2>&1; pip install -r requirements.txt && ./run"
|
run = ["killall", "-q", "python3", ">", "/dev/null", "2>&1;", "pip", "install", "-r", "requirements.txt", "&&", "./run"]
|
||||||
onBoot = "killall -q python3 > /dev/null 2>&1; pip install -r requirements.txt && ./run"
|
onBoot = ["killall", "-q", "python3", ">", "/dev/null", "2>&1;", "pip", "install", "-r", "requirements.txt", "&&", "./run"]
|
||||||
|
|
Loading…
Reference in New Issue