don't exit (yet) on collectstatic fail

This commit is contained in:
Kenneth Reitz
2012-05-30 15:57:33 -04:00
parent 23833dda9b
commit e914736956
+1 -1
View File
@@ -24,7 +24,7 @@ if [ "$RUN_COLLECTSTATIC" ]; then
[ $? -ne 0 ] && {
echo " ! Error running manage.py collectstatic. More info:"
echo " http://devcenter.heroku.com/articles/django-assets"
exit 1
# exit 1
}
else