Heimdallr/run.sh

6 lines
179 B
Bash
Executable File

#! /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