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.
This commit is contained in:
KokoTheBest 2021-07-15 23:35:16 -04:00 committed by GitHub
parent 1ac0d9bd86
commit 146245b1fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,3 @@
language = "python3"
run = "./run"
language = "bash"
run = "pip install -r requirements.txt && ./run"
onBoot = "pip install -r requirements.txt && ./run"