diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index 20ffe76c34cb58334ee7d24f830a5ebdb7350022..9ab29f5a0459e60f9077f677fe4ac2993f5677f7 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -32,7 +32,7 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ] && [ "$DJANGO_INSTALL
     # Run collectstatic, cleanup some of the noisy output.
     python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Copying/d;/^$/d;/^ /d' | indent
     echo
-    python $MANAGE_FILE collectstatic 2>&1 | indent
+    python $MANAGE_FILE collectstatic 2>&1 | sed '/^Copying/d;/^$/d' | indent
     COLLECTSTATIC_STATUS="${PIPESTATUS[0]}"
 
     set -e