mirror of https://github.com/apache/maven.git
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:
parent
e98d8b2a87
commit
e352a04716
|
@ -384,6 +384,11 @@ copyResources()
|
||||||
|
|
||||||
for include in $includes
|
for include in $includes
|
||||||
do
|
do
|
||||||
|
if [ ! -d "$directory" ]
|
||||||
|
then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
files=`eval "find $directory -name $include"`
|
files=`eval "find $directory -name $include"`
|
||||||
|
|
||||||
for file in $files
|
for file in $files
|
||||||
|
|
Loading…
Reference in New Issue