changeset 602:35f0904d4bd5

Update the collectstatic command for Django 1.4 directory layout.
author Brian Neal <bgneal@gmail.com>
date Sun, 22 Jul 2012 12:25:27 -0500
parents af403a9f4fb7
children 6a313b1f1201
files fabfile.py
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/fabfile.py	Sun Jul 22 12:06:40 2012 -0500
+++ b/fabfile.py	Sun Jul 22 12:25:27 2012 -0500
@@ -1,8 +1,7 @@
 from fabric.api import cd, run
 
 PYTHON = '/home/var/django-sites/virtualenvs/sg101/bin/python'
-WC_DIR = '/home/var/django-sites/virtualenvs/sg101/sg101'
-PROJ_DIR = WC_DIR + '/sg101'
+PROJ_DIR = '/home/var/django-sites/virtualenvs/sg101/sg101'
 
 def update():
     """
@@ -19,7 +18,7 @@
 
     """
     cmd = ('%s manage.py collectstatic '
-        '--settings=settings.production --noinput') % PYTHON
+        '--settings=sg101.settings.production --noinput') % PYTHON
 
     with cd(PROJ_DIR):
         run(cmd)