Skip to content
Snippets Groups Projects
Commit e4bcc68c authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

make collectstatic less spammy for ManifestStaticFilesStorage

From issue #11
parent 3b35c2c2
No related branches found
No related tags found
No related merge requests found
......@@ -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:"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment