Ignore cache on fabfile

master
Nick Sergeant 2012-06-05 15:47:07 -04:00
parent 16f2c8ff23
commit 8c0660cb47
1 changed files with 2 additions and 2 deletions

4
fabfile.py vendored
View File

@ -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):