From e914736956c0be035ec44b92856d3b7d67d3123e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Wed, 30 May 2012 15:57:33 -0400 Subject: [PATCH] don't exit (yet) on collectstatic fail --- bin/steps/django/collectstatic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic index 8389016b..2a0a8013 100755 --- a/bin/steps/django/collectstatic +++ b/bin/steps/django/collectstatic @@ -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 -- GitLab