Compare commits
No commits in common. "8a6af0e5b73c4e1a87e8da95aa339526a909495f" and "6529bea6bb1af7cc082cad514321bb694a297ed8" have entirely different histories.
8a6af0e5b7
...
6529bea6bb
|
@ -9,12 +9,12 @@ layout_poetry() {
|
|||
|
||||
if [[ ! -f pyproject.toml ]]; then
|
||||
# shellcheck disable=2016
|
||||
log_error 'layout_poetry: no pyproject.toml found. Use `poetry init` to create one first'
|
||||
log_error 'layout_poetry: no pyproject.toml found. Use `poetry new` or `poetry init` to create one first'
|
||||
return 1
|
||||
fi
|
||||
|
||||
# create venv if it doesn't exist
|
||||
poetry run -q -- true
|
||||
poetry run true
|
||||
|
||||
# shellcheck disable=2155
|
||||
export VIRTUAL_ENV=$(poetry env info --path)
|
||||
|
|
Loading…
Reference in a new issue