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.
This commit is contained in:
Avery Pennarun 2010-12-11 21:10:57 -08:00
commit 49f0a041b2
2 changed files with 8 additions and 1 deletions

View file

@ -6,3 +6,4 @@ fi
redo t/clean
rm -f *~ .*~ */*~ */.*~ *.pyc
rm -rf t/.redo
find -name '*.tmp' -exec rm -fv {} \;