make collectstatic less spammy for ManifestStaticFilesStorage

From issue #11
This commit is contained in:
2016-02-05 00:04:08 -05:00
parent 3b35c2c296
commit e4bcc68c9a
+1 -1
View File
@@ -20,7 +20,7 @@ if [ ! "$DISABLE_COLLECTSTATIC" ] && [ -f "$MANAGE_FILE" ]; then
if [ "$RUN_COLLECTSTATIC" ]; then
echo " Running collectstatic..."
python $MANAGE_FILE collectstatic --noinput 2>&1 | sed '/^Copying/d;/^$/d;/^ /d' | indent
python $MANAGE_FILE collectstatic --noinput 2>&1 | sed '/^Post-processed/d;/^Copying/d;/^$/d;/^ /d' | indent
[ $? -ne 0 ] && {
echo " ! Error running 'manage.py collectstatic'. More info:"