# HG changeset patch # User ymh # Date 1478162651 -3600 # Node ID f4fed295115b56e06303e595ed49284b15e0f089 # Parent 2204faa0b41a77d09bd873af7f70ae8385962f33 put virtualenv activation during build in comment. That means that for the moment the build machine must be provisionned beforehand, or ansible must be available globally diff -r 2204faa0b41a -r f4fed295115b build/build.sh --- a/build/build.sh Thu Nov 03 04:43:18 2016 +0100 +++ b/build/build.sh Thu Nov 03 09:44:11 2016 +0100 @@ -50,16 +50,16 @@ echoblue "---> checking vagrant" if vagrant status | grep -q -v "running"; then echoblue "---> starting vagrant" - if which virtualenvwrapper.sh > /dev/null 2>&1 ; then - echoblue "---> activating ansible" - source `which virtualenvwrapper.sh` - workon ansible - fi + # if which virtualenvwrapper.sh > /dev/null 2>&1 ; then + # echoblue "---> activating ansible" + # source `which virtualenvwrapper.sh` + # workon ansible + # fi vagrant up VAGRANT_STARTED=true - if type -t deactivate > /dev/null 2>&1 ; then - deactivate - fi + # if type -t deactivate > /dev/null 2>&1 ; then + # deactivate + # fi fi echoblue "---> done"