Added run script.

This commit is contained in:
Vegard Berg 2022-08-11 01:39:39 +02:00
parent 285c617871
commit 506230be16
1 changed files with 6 additions and 0 deletions

6
run.sh Executable file
View File

@ -0,0 +1,6 @@
#! /bin/sh
if command -v poetry > /dev/null; then
poetry install -q && poetry run python Heimdallr.py
else
echo "Poetry must be installed and available in the PATH" >&2
fi