Files
cfpresume/setup.sh
2022-07-24 16:26:21 -05:00

10 lines
137 B
Bash
Executable File

#!/usr/bin/env sh
command -v poetry; EXIT_CODE=$?
if [ "$EXIT_CODE" != "0" ]; then
python -m pip install poetry
fi
poetry install