diff options
-rwxr-xr-x | dev.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 ] \ |