rockbox/tools/checkwps/cleanall.sh
Maurus Cuelenaere 3ca9946cb1 Checkwps: the scripts of course shouldn't be searching for output files in rootdir..
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19901 a1c6a512-1295-4272-9138-f99709370657
2009-02-02 00:19:32 +00:00

9 lines
137 B
Bash
Executable file

#!/bin/sh
rootdir=`dirname $0`
cat $rootdir/targets.txt | (
while read target model
do
rm -f checkwps.$model
done
)