1
0
Fork 0

Fix: Don't force ~/.virtualenvs as WORKON_HOME

pull/909/head
Jacob Magnusson 10 years ago
parent f2a826e963
commit 084433428a

@ -37,7 +37,9 @@ fi
# Load virtualenvwrapper into the shell session. # Load virtualenvwrapper into the shell session.
if (( $+commands[virtualenvwrapper.sh] )); then if (( $+commands[virtualenvwrapper.sh] )); then
# Set the directory where virtual environments are stored. # Set the directory where virtual environments are stored.
export WORKON_HOME="$HOME/.virtualenvs" if [[ -z $WORKON_HOME ]]; then
export WORKON_HOME="$HOME/.virtualenvs"
fi
# Disable the virtualenv prompt. # Disable the virtualenv prompt.
VIRTUAL_ENV_DISABLE_PROMPT=1 VIRTUAL_ENV_DISABLE_PROMPT=1

Loading…
Cancel
Save