o Removing the annoying error message:

find: src/main/resources: No such file or directory


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162706 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Trygve Laugstol 2004-05-16 14:33:11 +00:00
parent e98d8b2a87
commit e352a04716
1 changed files with 5 additions and 0 deletions

View File

@ -384,6 +384,11 @@ copyResources()
for include in $includes
do
if [ ! -d "$directory" ]
then
continue
fi
files=`eval "find $directory -name $include"`
for file in $files