Heimdallr/run.sh

6 lines
189 B
Bash
Raw Normal View History

2022-08-11 01:39:39 +02:00
#! /bin/sh
if command -v poetry > /dev/null; then
2022-10-15 02:51:21 +02:00
poetry install -q && poetry run python heimdallr/Heimdallr.py
2022-08-11 01:39:39 +02:00
else
echo "Poetry must be installed and available in the PATH" >&2
fi