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

collectstatic command

parent 133c3087
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
# Compile assets.
echo "-----> Collecting static files"
python $PROJECT/manage.py collectstatic --noinput | indent
[ $? -ne 0 ] && {
echo " ! Error running manage.py collectstatic. More info:"
echo " ! http://devcenter.heroku.com/articles/django-assets"
}
set -e
\ No newline at end of file
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