Ticket #29504: virtualenvwrapper_sh.diff
File virtualenvwrapper_sh.diff, 618 bytes (added by John-Whitlock@…, 13 years ago) |
---|
-
virtualenvwrapper.sh
old new 47 47 # Locate the global Python where virtualenvwrapper is installed. 48 48 if [ "$VIRTUALENVWRAPPER_PYTHON" = "" ] 49 49 then 50 VIRTUALENVWRAPPER_PYTHON="$(\which python)"50 VIRTUALENVWRAPPER_PYTHON="$(\which __PYTHON_BIN__)" 51 51 fi 52 52 53 53 # Set the name of the virtualenv app to use. 54 54 if [ "$VIRTUALENVWRAPPER_VIRTUALENV" = "" ] 55 55 then 56 VIRTUALENVWRAPPER_VIRTUALENV=" virtualenv"56 VIRTUALENVWRAPPER_VIRTUALENV="__VIRTUALENV_BIN__" 57 57 fi 58 58 59 59 virtualenvwrapper_derive_workon_home() {