Heimdallr/run.sh

6 lines
179 B
Bash
Raw Normal View History

2022-08-11 01:39:39 +02:00
#! /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