From 2058b3c5bfdb5c4ed3d4fd6c71756593d0db3aac Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Wed, 30 May 2012 02:42:46 -0400 Subject: [PATCH] --verbosity=0 --- 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 8c44b7fd..a5806f53 100755 --- a/bin/steps/django/collectstatic +++ b/bin/steps/django/collectstatic @@ -13,7 +13,7 @@ fi # Compile assets if collectstatic appears to be . if [ "$RUN_COLLECTSTATIC" ]; then echo "-----> Collecting static files" - python $PROJECT/manage.py collectstatic --noinput | indent + python $PROJECT/manage.py collectstatic --noinput --verbosity=0 | indent [ $? -ne 0 ] && { echo " ! Error running manage.py collectstatic. More info:" -- GitLab