...and fix a bug where builder.py can't handle it if its temp file is deleted out from under it.
9 lines
173 B
Text
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 {} \;
|