summaryrefslogtreecommitdiff
path: root/dev.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dev.sh')
-rwxr-xr-xdev.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/dev.sh b/dev.sh
index 75f756a..be5ea86 100755
--- a/dev.sh
+++ b/dev.sh
@@ -19,6 +19,10 @@ all Do it all: pytest, coverage report in firefox and pylint
install Build poetry package and install it for current user
" && exit 0
+# Ensure ~/.local/bin in the PATH.
+echo $PATH | grep /.local/bin > /dev/null \
+ || export PATH="$HOME/.local/bin:$PATH"
+
PIP=`which pipx`
[ x$PIP = x ] && PIP=`which pip`
[ x$PIP = x ] \