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:"