Mercurial > public > sg101
diff fabfile.py @ 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 | 76ec83b73e18 |
children | a7968613c469 |
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)