From e716f6e2596238607e8c4bb884b78238c21d68d5 Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Tue, 18 Oct 2016 12:58:11 -0400 Subject: [PATCH] make static directory before collecting --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 16cff5e263..8cb02df323 100644 --- a/Makefile +++ b/Makefile @@ -395,7 +395,7 @@ collectstatic: @if [ "$(VENV_BASE)" ]; then \ . $(VENV_BASE)/tower/bin/activate; \ fi; \ - $(PYTHON) manage.py collectstatic --clear --noinput > /dev/null 2>&1 + mkdir -p awx/public/static && $(PYTHON) manage.py collectstatic --clear --noinput > /dev/null 2>&1 uwsgi: collectstatic @if [ "$(VENV_BASE)" ]; then \