mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
0f596d2504
This reverts commit070e1c859f
, reversing changes made to3faeda67bb
.
23 lines
444 B
Bash
Executable file
23 lines
444 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
# Provide pyenv completions
|
|
if [ "$1" = "--complete" ]; then
|
|
exec pyenv-rehash --complete
|
|
fi
|
|
|
|
shell="$(basename "${PYENV_SHELL:-$SHELL}")"
|
|
|
|
# When pyenv shell integration is enabled, delegate to pyenv-rehash,
|
|
# then tell the shell to empty its command lookup cache.
|
|
pyenv-rehash
|
|
|
|
case "$shell" in
|
|
fish )
|
|
# no rehash support
|
|
;;
|
|
* )
|
|
echo "hash -r 2>/dev/null || true"
|
|
;;
|
|
esac
|