exclude overly verbose 'copying' lines

This commit is contained in:
Kenneth Reitz
2012-05-31 02:35:33 -04:00
parent bbe0acf001
commit b6eada4e67
+1 -1
View File
@@ -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:"