apenwarr-redo/clean.do
Avery Pennarun 49f0a041b2 clean.do: cleanup *.tmp files that might have been left lying around.
...and fix a bug where builder.py can't handle it if its temp file is
deleted out from under it.
2010-12-11 21:10:57 -08:00

9 lines
173 B
Text

if [ -e .do_built ]; then
while read x; do
rm -f "$x"
done <.do_built
fi
redo t/clean
rm -f *~ .*~ */*~ */.*~ *.pyc
rm -rf t/.redo
find -name '*.tmp' -exec rm -fv {} \;