Updating deployment guide so that it can handle the current virtualenv site-packages...
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 2 Feb 2012 15:29:25 +0000 (09:29 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 2 Feb 2012 15:29:25 +0000 (09:29 -0600)
Now it should try using --system-site-packages and if that
fails (older version) it tries it without the argument.

docs/source/deploying.rst

index 4aded2e671e5ed4bcfa0c5d9d024d2b82ed23546..a8ee6ff11040306becbec7424ace4e7330dbe171 100644 (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::