We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 596f89b commit cd45c41Copy full SHA for cd45c41
1 file changed
virtualenvwrapper.sh
@@ -117,12 +117,11 @@ fi
117
# cd because we are trying to change the state of the current shell,
118
# so we use "builtin".
119
function virtualenvwrapper_cd {
120
- if [ -n "${BASH:-}" ]
121
- then
122
- builtin \cd "$@"
123
- elif [ -n "${ZSH_VERSION:-}" ]
+ if [ -n "${ZSH_VERSION:-}" ]
124
then
125
builtin \cd -q "$@"
+ else
+ builtin \cd "$@"
126
fi
127
}
128
0 commit comments