Added support for bundles with subdirs

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163192 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2004-10-12 09:31:44 +00:00
parent 74c818888a
commit 8be0ceb7d2
1 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,11 @@ echo $BUNDLE
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