6 lines
179 B
Bash
6 lines
179 B
Bash
|
#! /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
|