10 lines
137 B
Bash
Executable File
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
|