From 1e8ad56b0f8258af3d51a6e97d9add2ab606a1fe Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Thu, 4 Feb 2016 23:43:30 -0500 Subject: [PATCH] sed debug --- bin/steps/collectstatic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic index 20ffe76c..9ab29f5a 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 -- GitLab