From 6505f98bae7a4da22adc44ad6515e9ca22e631cd Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Fri, 5 Feb 2016 01:07:05 -0500 Subject: [PATCH] cleanup --- bin/steps/collectstatic | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic index bda8e12e..7ebe5b6f 100755 --- a/bin/steps/collectstatic +++ b/bin/steps/collectstatic @@ -30,9 +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 '/^Post-processed/d;/^Copying/d;/^$/d;/^ /d' | indent - echo - python $MANAGE_FILE collectstatic 2>&1 | sed '/^Copying/d;/^$/d' | indent + python $MANAGE_FILE collectstatic --noinput --traceback 2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d' | indent COLLECTSTATIC_STATUS="${PIPESTATUS[0]}" set -e -- GitLab