7 lines
143 B
Bash
7 lines
143 B
Bash
if [ -d .venv ]; then
|
|
source $(poetry env info --path)/bin/activate
|
|
else
|
|
poetry install
|
|
source $(poetry env info --path)/bin/activate
|
|
fi
|