You are viewing a plain text version of this content. The canonical link for it is here.
Posted to m2-dev@maven.apache.org by ca...@apache.org on 2004/10/12 11:31:44 UTC

cvs commit: maven-components/maven-meeper/src/bin deploy-bundle

carlos      2004/10/12 02:31:44

  Modified:    maven-meeper/src/bin deploy-bundle
  Log:
  Added support for bundles with subdirs
  
  Revision  Changes    Path
  1.8       +5 -0      maven-components/maven-meeper/src/bin/deploy-bundle
  
  Index: deploy-bundle
  ===================================================================
  RCS file: /home/cvs/maven-components/maven-meeper/src/bin/deploy-bundle,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- deploy-bundle	2 Sep 2004 20:15:36 -0000	1.7
  +++ deploy-bundle	12 Oct 2004 09:31:44 -0000	1.8
  @@ -24,6 +24,11 @@
   
     jar xf $BUNDLE
   
  +  # copy files in subdirs to workdir
  +  for d in `find ./* -type d` ; do
  +    for f in `find $d -type f` ; do cp $f .; done;
  +  done
  +
     POM=project.xml
     less $POM
   
  
  
  

Re: cvs commit: maven-components/maven-meeper/src/bin deploy-bundle

Posted by Jason van Zyl <jv...@maven.org>.
On Tue, 2004-10-12 at 05:31, carlos@apache.org wrote:
> carlos      2004/10/12 02:31:44
> 
>   Modified:    maven-meeper/src/bin deploy-bundle
>   Log:
>   Added support for bundles with subdirs

What are in the subdirs? Why do we need them?

I know you probably already have but please make sure you update the
code on beaver.  

-- 
jvz.

Jason van Zyl
jason@maven.org
http://maven.apache.org

happiness is like a butterfly: the more you chase it, the more it will
elude you, but if you turn your attention to other things, it will come
and sit softly on your shoulder ...

 -- Thoreau