"vscode:/vscode.git/clone" did not exist on "a43cef34043dae63d73cd40b7e887a43e7b93680"
Commit 6f927457 authored by Cenk Alti's avatar Cenk Alti
Browse files

Added another path for virtualenvwrapper plugin

When you install python via brew on OSX, pip is installed into /usr/local/share/python/ and all packages installed with this pip are installed here.
parent d05b2010
WRAPPER_FOUND=0 WRAPPER_FOUND=0
for wrapsource in "/usr/bin/virtualenvwrapper.sh" "/usr/local/bin/virtualenvwrapper.sh" "/etc/bash_completion.d/virtualenvwrapper" ; do for wrapsource in "/usr/bin/virtualenvwrapper.sh" "/usr/local/bin/virtualenvwrapper.sh" "/usr/local/share/python/virtualenvwrapper.sh" "/etc/bash_completion.d/virtualenvwrapper" ; do
if [[ -e $wrapsource ]] ; then if [[ -e $wrapsource ]] ; then
WRAPPER_FOUND=1 WRAPPER_FOUND=1
source $wrapsource source $wrapsource
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment