From 7f2f4a32ca9d6b72ed171ccb11ce8587c94c71ee Mon Sep 17 00:00:00 2001 From: neko404notfound <40436815+neko404notfound@users.noreply.github.com> Date: Wed, 20 Jun 2018 18:39:47 +0100 Subject: [PATCH] Fixed a stupid typo. --- sebi_machine_launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sebi_machine_launcher.sh b/sebi_machine_launcher.sh index b6d1148..ceb3395 100644 --- a/sebi_machine_launcher.sh +++ b/sebi_machine_launcher.sh @@ -7,7 +7,7 @@ trap "echo 'Received interrupt. Exiting.'; exit 0" SIGINT # Also loads the venv if it is present. -[ -d .venv/bin ] && source ./venv/bin/activate && echo "Entered venv." || echo "No venv detected." +[ -d .venv/bin ] && source .venv/bin/activate && echo "Entered venv." || echo "No venv detected." until python -m src; do # Added colouring to ensure the date of shutdown and the exit code stands