From 146245b1fd882f50d27f52bb3b8efe62fde08320 Mon Sep 17 00:00:00 2001 From: KokoTheBest <81335306+KokoTheBest@users.noreply.github.com> Date: Thu, 15 Jul 2021 23:35:16 -0400 Subject: [PATCH] Running in Bash I applied the same change I made on onBoot to the run variable, and made the language bash as the syntax `./` and `&&` belong to bash. --- .replit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.replit b/.replit index 6cf1cab..a02e438 100644 --- a/.replit +++ b/.replit @@ -1,3 +1,3 @@ -language = "python3" -run = "./run" +language = "bash" +run = "pip install -r requirements.txt && ./run" onBoot = "pip install -r requirements.txt && ./run"