mirror of
https://github.com/benbusby/whoogle-search.git
synced 2025-06-23 15:30:48 -04:00
Convert replit run + onBoot commands to arrays
Apparently Replit requires these values to be arrays now instead of strings.
This commit is contained in:
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…
x
Reference in New Issue
Block a user