Both redo and minimal/do were doing slightly weird things with symlinked directories, especially when combined with "..". For example, if x is a link to ., then x/x/x/x/../y should resolve to "../y", which is quite non-obvious. Added some tests to make sure this stays fixed.
13 lines
402 B
Text
13 lines
402 B
Text
exec >&2
|
|
rm -rf t/.redo redo/sh
|
|
if [ -e .do_built ]; then
|
|
while read x; do
|
|
[ -d "$x" ] || rm -f "$x"
|
|
done <.do_built
|
|
fi
|
|
[ -z "$DO_BUILT" ] && rm -rf .do_built .do_built.dir
|
|
rm -rf minimal/.do_built minimal/.do_built.dir minimal/y docs.out
|
|
redo t/clean docs/clean redo/clean
|
|
rm -f *~ .*~ */*~ */.*~ *.pyc install.wrapper
|
|
find . -name '*.tmp' -exec rm -f {} \;
|
|
find . -name '*.did' -exec rm -f {} \;
|