From b6eada4e6717702b4f93b2667b7118d28da689f8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 31 May 2012 02:35:33 -0400 Subject: [PATCH] exclude overly verbose 'copying' lines --- bin/steps/django/collectstatic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/steps/django/collectstatic b/bin/steps/django/collectstatic index 782cead..ebeaa15 100755 --- a/bin/steps/django/collectstatic +++ b/bin/steps/django/collectstatic @@ -15,7 +15,7 @@ echo "-----> Collecting static files" # Compile assets if collectstatic appears to be kosher. if [ "$RUN_COLLECTSTATIC" ]; then - python $MANAGE_FILE collectstatic --noinput | indent + python $MANAGE_FILE collectstatic --noinput | sed '/^Copying/d;/^$/d' | indent [ $? -ne 0 ] && { echo " ! Error running manage.py collectstatic. More info:"