Commit d0894a5068ec3676c56c341db6f29ac6955d4239
1 parent
2197dbfa
Exists in
master
and in
32 other branches
Fixed virtualenvwrapper for trusty64
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
vagrant/provision.sh
... | ... | @@ -8,6 +8,8 @@ export VIRTUALENVWRAPPER_PYTHON="/usr/bin/python2.7" |
8 | 8 | set +e |
9 | 9 | if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then |
10 | 10 | source /usr/local/bin/virtualenvwrapper.sh |
11 | +elif [ -f /usr/share/virtualenvwrapper/virtualenvwrapper.sh ]; then | |
12 | + source /usr/share/virtualenvwrapper/virtualenvwrapper.sh | |
11 | 13 | else |
12 | 14 | source /usr/bin/virtualenvwrapper.sh |
13 | 15 | fi | ... | ... |