Commit 9cfd4b07 by Ned Batchelder

Explicitly ignore the failure of dd

parent be7f7904
......@@ -17,5 +17,7 @@ find / -type d -path '*/.cache/pip' -print -exec rm -rf '{}/*' \;
find /edx/app -name '*.pyc' -delete
# Last thing: fill the disk with zeros so they'll compress well.
dd if=/dev/zero of=/empty bs=1M
# The dd command fails because the disk fills, which is the point, so silence
# the error.
dd if=/dev/zero of=/empty bs=1M || true
rm -f /empty
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment