From 8c0660cb4740e4c231c309747e6ca4c0f1a04ea4 Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Tue, 5 Jun 2012 15:47:07 -0400 Subject: [PATCH] Ignore cache on fabfile --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 4d3f452..27b336e 100644 --- a/fabfile.py +++ b/fabfile.py @@ -18,7 +18,7 @@ def dep(): _display_message('Collect static') ################ - local('python manage.py collectstatic --noinput') + local('python manage.py collectstatic --ignore cache --noinput') _display_message('Git push') ################ @@ -45,7 +45,7 @@ def dep(): _display_message('Collect static', False) ################ - run(_python('manage.py collectstatic --noinput')) + run(_python('manage.py collectstatic --ignore cache --noinput')) def db(): with cd(env.site_path):