mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
14 lines
416 B
Plaintext
14 lines
416 B
Plaintext
if [[ ! -f pyproject.toml ]]; then
|
|
log_error 'No pyproject.toml found. Use `poetry new` or `poetry init` to create one first.'
|
|
exit 2
|
|
fi
|
|
|
|
local VENV=$(poetry env list --full-path | cut -d' ' -f1)
|
|
if [[ -z $VENV || ! -d $VENV/bin ]]; then
|
|
log_error 'No poetry virtual environment found. Use `poetry install` to create one first.'
|
|
exit 2
|
|
fi
|
|
|
|
export VIRTUAL_ENV=$VENV
|
|
export POETRY_ACTIVE=1
|
|
PATH_add "$VENV/bin" |