zconfig/update_pipenv.sh
2023-05-12 17:56:28 +02:00

22 lines
478 B
Bash
Executable file

#!/usr/bin/env zsh
echo "Updating pipenv completion"
currpath=$(realpath $PWD)
if [ ! -d ${currpath}/compiled ]; then
mkdir compiled
fi
which pipenv > /dev/null
if [ $? -ne 0 ]; then
echo "Error: you need to install pipenv first!"
exit 1
fi
_PIPENV_COMPLETE=zsh_source pipenv > ${currpath}/compiled/pipenv.zsh
if [ ! -d ~/.config/zsh ]; then
mkdir -p ~/.config/zsh
fi
cp ${currpath}/compiled/pipenv.zsh ~/.config/zsh/pipenv.zsh
# vim: set ft=sh et sw=0 ts=2 sts=0: