diff options
author | Viljami Ilola <+@hix.fi> | 2024-03-31 12:40:29 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-03-31 12:40:29 +0300 |
commit | 8c99a9df92d80c411f9bd31758b2c2664b363aad (patch) | |
tree | 799425bfc8a44e6451d63f611cb1261ce0ed6e36 | |
parent | abebd302f91e419046eeac209ef3a0c497c6445d (diff) |
./dev.sh - try not reinstall poetry
-rwxr-xr-x | dev.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -32,12 +32,13 @@ PIP=`which pipx` export DEVSH_PRIN=">>$DEVSH_PRIN" export DEVSH_PROUT="<<$DEVSH_PROUT" -$ECHO "\033[32m$DEVSH_PRIN $0 $1 - started.\033[0m" +$ECHO "\033[32m$DEVSH_PRIN $0 $1 - started...\033[0m" case $1 in install-poetry) - $PIP install poetry + [ -e $HOME/.local/bin/poetry ] \ + || $PIP install poetry ;; install-latest-build) |