Skip to content
Snippets Groups Projects
Commit faa349ca authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

remove static collection (for now)

parent 825d4169
No related branches found
No related tags found
No related merge requests found
...@@ -47,19 +47,3 @@ except Exception: ...@@ -47,19 +47,3 @@ except Exception:
EOF EOF
# Collect static files.
set +e
echo "-----> Collecting static files"
OUT=$(python $PROJECT/manage.py collectstatic --noinput 2>&1)
[ $? -ne 0 ] && STATIC_FAILED=1
if [ "$STATIC_FAILED" ]; then
echo " ! Error running manage.py collectstatic. See http://devcenter.heroku.com/articles/django-assets for more info."
else
echo "$OUT" | indent
fi
set -e
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment