aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2012-02-02 09:29:25 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2012-02-02 09:29:25 -0600
commit95ff15d66e89d4aacc9a452410efa0b8e9c602dd (patch)
treef0265b5ebe7421220e1abe9bba355f6206866ac6
parent51fba99125c63a6a5e68480e7d4b1ea08f33a4db (diff)
downloadmediagoblin-95ff15d66e89d4aacc9a452410efa0b8e9c602dd.tar.lz
mediagoblin-95ff15d66e89d4aacc9a452410efa0b8e9c602dd.tar.xz
mediagoblin-95ff15d66e89d4aacc9a452410efa0b8e9c602dd.zip
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.
-rw-r--r--docs/source/deploying.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/deploying.rst b/docs/source/deploying.rst
index 4aded2e6..a8ee6ff1 100644
--- a/docs/source/deploying.rst
+++ b/docs/source/deploying.rst
@@ -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::