mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
don't fail
This commit is contained in:
+4
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user