Remove --no-site-packages as that is now the default behavior
parent
8c4ea4f598
commit
afe700fc0c
|
|
@ -11,7 +11,7 @@ function mkvenv {
|
|||
group 'virtualenv'
|
||||
|
||||
cwd=`basename \`pwd\``
|
||||
mkvirtualenv --no-site-packages --distribute $cwd
|
||||
mkvirtualenv --distribute $cwd
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -19,7 +19,7 @@ function mkvbranch {
|
|||
about 'create a new virtualenv for the current branch'
|
||||
group 'virtualenv'
|
||||
|
||||
mkvirtualenv --no-site-packages --distribute "$(basename `pwd`)@$(git_prompt_info)"
|
||||
mkvirtualenv --distribute "$(basename `pwd`)@$(git_prompt_info)"
|
||||
}
|
||||
|
||||
function wovbranch {
|
||||
|
|
|
|||
Loading…
Reference in New Issue