From 36d27c46ed9ac0366e1d05e62459f6b249ed5fae Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Wed, 30 May 2012 02:54:57 -0400 Subject: [PATCH] \n --- bin/steps/django/collectstatic | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic index 5676eb80..6a7a8b18 100755 --- a/bin/steps/django/collectstatic +++ b/bin/steps/django/collectstatic @@ -13,8 +13,8 @@ fi # Compile assets if collectstatic appears to be kosher. if [ "$RUN_COLLECTSTATIC" ]; then echo "-----> Collecting static files" - echo "python $MANAGE_FILE collectstatic --noinput --verbosity=0" - python $MANAGE_FILE collectstatic --noinput --verbosity=0 | indent + echo "python $MANAGE_FILE collectstatic --noinput" + python $MANAGE_FILE collectstatic --noinput | indent [ $? -ne 0 ] && { echo " ! Error running manage.py collectstatic. More info:" @@ -23,4 +23,6 @@ if [ "$RUN_COLLECTSTATIC" ]; then else echo " ! Django collecstatic is not configured. Learn more:" echo " http://devcenter.heroku.com/articles/django-assets" -fi \ No newline at end of file +fi + +echo '\n' \ No newline at end of file -- GitLab