From 6c104b27271cd18b5b0b099763d9eded670b9739 Mon Sep 17 00:00:00 2001 From: Andres Vargas Date: Sun, 29 Nov 2020 21:50:11 -0600 Subject: [PATCH] update deploy --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 19022da..d477598 100644 --- a/fabfile.py +++ b/fabfile.py @@ -9,7 +9,7 @@ @task def deploy(ctx): local("yarn build", echo=True) - local("python manage.py collectstatic --noinput", echo=True) + local("python manage.py collectstatic --noinput --clear", echo=True) rsync(ctx, "static/", "apps/django-sockpuppet-expo/static/", exclude=exclude_dirs) with ctx.cd("~/apps/django-sockpuppet-expo"):