o remove test resources file

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162553 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-01-27 23:13:01 +00:00
parent 4dab452c02
commit ca1a69cf34
1 changed files with 7 additions and 1 deletions

View File

@ -200,6 +200,7 @@ buildMavenProject()
rm -f bootstrap.repo > /dev/null 2>&1
rm -f bootstrap.tests.includes > /dev/null 2>&1
rm -f bootstrap.tests.excludes > /dev/null 2>&1
rm -f bootstrap.tests.resources > /dev/null 2>&1
fi
)
}
@ -232,6 +233,9 @@ copyResources()
# $1 == resourcesfile
# $2 == target directory
if [ -f $1 ]
then
resources=`cat $1`
for i in $resources
@ -281,7 +285,9 @@ copyResources()
done
done
find target/classes -name 'CVS*' -exec rm -rf {} > /dev/null 2>&1 \;
find $2 -name 'CVS*' -exec rm -rf {} > /dev/null 2>&1 \;
fi
}
# OS specific support. $var _must_ be set to either true or false.