Remove --no-site-packages as that is now the default behavior

pull/171/merge
Travis Swicegood 2012-11-16 11:00:30 -06:00
parent 8c4ea4f598
commit afe700fc0c
1 changed files with 2 additions and 2 deletions

View File

@ -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 {