don't fail

This commit is contained in:
Kenneth Reitz
2012-01-18 13:51:07 -05:00
parent c0b4a0e3c7
commit 8ec956758e
+4 -2
View File
@@ -49,11 +49,13 @@ EOF
# Compile assets.
set +e
echo "-----> Collecting static files"
python $PROJECT/manage.py collectstatic --noinput | indent
OUT=$(python $PROJECT/manage.py collectstatic --noinput )
[ $? -ne 0 ] && {
echo " ! Error running manage.py collectstatic. See http://devcenter.heroku.com/articles/django-assets for more info."
echo "$OUT" | indent
}
set -e