You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ca...@apache.org on 2006/02/07 20:31:51 UTC

svn commit: r375668 - /maven/components/trunk/maven-meeper/src/bin/deploy-bundle

Author: carlos
Date: Tue Feb  7 11:31:46 2006
New Revision: 375668

URL: http://svn.apache.org/viewcvs?rev=375668&view=rev
Log:
Allow poms ending in .pom

Modified:
    maven/components/trunk/maven-meeper/src/bin/deploy-bundle

Modified: maven/components/trunk/maven-meeper/src/bin/deploy-bundle
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-meeper/src/bin/deploy-bundle?rev=375668&r1=375667&r2=375668&view=diff
==============================================================================
--- maven/components/trunk/maven-meeper/src/bin/deploy-bundle (original)
+++ maven/components/trunk/maven-meeper/src/bin/deploy-bundle Tue Feb  7 11:31:46 2006
@@ -35,6 +35,10 @@
   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