summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViljami Ilola <+@hix.fi>2024-03-31 12:40:29 +0300
committerViljami Ilola <+@hix.fi>2024-03-31 12:40:29 +0300
commit8c99a9df92d80c411f9bd31758b2c2664b363aad (patch)
tree799425bfc8a44e6451d63f611cb1261ce0ed6e36
parentabebd302f91e419046eeac209ef3a0c497c6445d (diff)
./dev.sh - try not reinstall poetry
-rwxr-xr-xdev.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/dev.sh b/dev.sh
index be5ea86..7c71989 100755
--- a/dev.sh
+++ b/dev.sh
@@ -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)