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 \