Updating deployment guide so that it can handle the current virtualenv site-packages changes

Now it should try using --system-site-packages and if that
fails (older version) it tries it without the argument.
This commit is contained in:
Christopher Allan Webber 2012-02-02 09:29:25 -06:00
parent 51fba99125
commit 95ff15d66e

View File

@ -118,7 +118,7 @@ Clone the MediaGoblin repository::
And setup the in-package virtualenv::
cd mediagoblin
virtualenv . && ./bin/python setup.py develop
(virtualenv --system-site-packages . || virtualenv .) && ./bin/python setup.py develop
.. note::