From 78b6142d1861ba0fe73cd59deadc92c46d68c499 Mon Sep 17 00:00:00 2001
From: Kenneth Reitz <me@kennethreitz.org>
Date: Fri, 5 Feb 2016 00:06:38 -0500
Subject: [PATCH] suppress ManifestStaticFilesStorage

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

diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index 4b095fef..bda8e12e 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -30,7 +30,7 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALL
     echo "-----> Preparing static assets with 'collectstatic'"
 
     # Run collectstatic, cleanup some of the noisy output.
-    python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Copying/d;/^$/d;/^ /d' | indent
+    python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d;/^ /d' | indent
     echo
     python $MANAGE_FILE collectstatic 2>&1 | sed '/^Copying/d;/^$/d' | indent
     COLLECTSTATIC_STATUS="${PIPESTATUS[0]}"
-- 
GitLab