diff --git a/manifests/config.pp b/manifests/config.pp index 787bd31..2fe8128 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -3,7 +3,7 @@ class python::config { include boxen::config - $venv_home = "${boxen::config::datadir}/virturalenvs" + $venv_home = "${boxen::config::datadir}/virtualenvs" # The "global" scope for python modules in boxen $global_venv = $homebrew::config::installdir } diff --git a/templates/python_venvwrapper.sh.erb b/templates/python_venvwrapper.sh.erb index 44735b2..852e49f 100644 --- a/templates/python_venvwrapper.sh.erb +++ b/templates/python_venvwrapper.sh.erb @@ -1,2 +1,2 @@ -source $BOXEN_HOME/homebrew/bin/virtualenvwrapper.sh +source /usr/local/bin/virtualenvwrapper.sh export WORKON_HOME=<%= scope.lookupvar "python::config::venv_home" %>