Fix so this works with the all themes (oops)

This commit is contained in:
Travis Swicegood
2014-01-09 10:52:14 -06:00
parent 3f41442e3a
commit adfd72a3ad

View File

@@ -19,14 +19,14 @@ function mkvbranch {
about 'create a new virtualenv for the current branch'
group 'virtualenv'
mkvirtualenv --distribute "$(basename `pwd`)@$(git_prompt_info)"
mkvirtualenv --distribute "$(basename `pwd`)@$SCM_BRANCH"
}
function wovbranch {
about 'sets workon branch'
group 'virtualenv'
workon "$(basename `pwd`)@$(git_prompt_info)"
workon "$(basename `pwd`)@$SCM_BRANCH"
}
function wovenv {