Commit 0e1ae7a7 authored by Kenneth Reitz's avatar Kenneth Reitz

collectstatic command

parent 133c3087
#!/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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment