Convert replit run + onBoot commands to arrays

Apparently Replit requires these values to be arrays now instead of
strings.
pull/994/head
Ben Busby 1 year ago
parent b39ba0533a
commit 076948dd0e
No known key found for this signature in database
GPG Key ID: B9B7231E01D924A1

@ -1,3 +1,3 @@
language = "bash"
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"
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"]

Loading…
Cancel
Save