mirror of https://github.com/apache/maven.git
Allow poms ending in .pom
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@375668 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc507307b8
commit
c78a0a8167
|
@ -35,6 +35,10 @@ echo $BUNDLE
|
|||
then
|
||||
POM=pom.xml
|
||||
fi
|
||||
if [ ! -f ${POM} ]
|
||||
then
|
||||
POM=`find . -iname *.pom`
|
||||
fi
|
||||
|
||||
[ ! -f ${POM} ] && echo && echo "Cannot deploy without the pom.xml or project.xml file!" && echo && exit
|
||||
|
||||
|
|
Loading…
Reference in New Issue