Updated image

This commit is contained in:
2022-05-28 17:53:09 +02:00
parent ae3cdbd157
commit 945843580f
2 changed files with 15 additions and 1 deletions

13
source/run.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Start the first process
python bot.py &
# Start the second process
python daily_challenge.py &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?