annotate tests/clean.sh @ 277:abfb26e08d9c audiodb-debian

Merge trunk changes -r326:386 into audiodb-debian branch. Plus new debian/changelog version. (Should have used an epoch really, but couldn't be bothered; TODO: work out a sane version numbering policy).
author mas01cr
date Tue, 01 Jul 2008 09:12:40 +0000
parents 06922d637752
children
rev   line source
mas01cr@78 1 #! /bin/sh
mas01cr@78 2
mas01cr@78 3 for file in [0-9][0-9][0-9][0-9]*; do
mas01cr@78 4 if [ -d ${file} ]; then
mas01cr@78 5 echo Cleaning ${file}
mas01cr@78 6 rm -f ${file}/test*
mas01cr@78 7 if [ -f ${file}/clean.sh ]; then
mas01cr@78 8 (cd ${file} && sh ./clean.sh)
mas01cr@78 9 fi
mas01cr@78 10 fi
mas01cr@78 11 done