zconfig/update_pipenv.sh

23 lines
463 B
Bash
Raw Normal View History

2020-04-29 12:54:10 +02:00
#!/usr/bin/env zsh
echo "Updating pipenv completion"
2020-04-29 12:54:10 +02:00
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 --completion > ${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: