From e4bcc68c9ae6ed76e110f800649bafbbf186fc02 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Fri, 5 Feb 2016 00:04:08 -0500
Subject: [PATCH] make collectstatic less spammy for ManifestStaticFilesStorage

From issue #11
---
 bin/steps/collectstatic | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index 7ed9f422..4ba2bc6d 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -20,7 +20,7 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ]; then
     if [ "$RUN_COLLECTSTATIC" ]; then
 
         echo "       Running collectstatic..."
-        python $MANAGE_FILE collectstatic --noinput  2>&1 | sed '/^Copying/d;/^$/d;/^ /d' | indent
+        python $MANAGE_FILE collectstatic --noinput  2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d;/^ /d' | indent
 
         [ $? -ne 0 ] && {
             echo " !     Error running 'manage.py collectstatic'. More info:"
-- 
GitLab