mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Fixed checking of whether virtualenvwrapper exists
This commit is contained in:
parent
90c28b786a
commit
48146928b2
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
virtualenvwrapper='virtualenvwrapper_lazy.sh'
|
virtualenvwrapper='virtualenvwrapper_lazy.sh'
|
||||||
if (( $+commands[$virtualenvwrapper] )); then
|
if [[ -f `which $virtualenvwrapper` ]]; then
|
||||||
source ${${virtualenvwrapper}:c}
|
source ${${virtualenvwrapper}:c}
|
||||||
|
|
||||||
if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then
|
if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue