From 076948dd0ee3b0e7f95f2b3a2386921bbb8e4ef6 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Wed, 22 Mar 2023 12:40:30 -0600 Subject: [PATCH] Convert replit run + onBoot commands to arrays Apparently Replit requires these values to be arrays now instead of strings. --- .replit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.replit b/.replit index c68c7ba..beae184 100644 --- a/.replit +++ b/.replit @@ -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"]