mirror of https://github.com/apache/maven.git
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:
parent
74c818888a
commit
8be0ceb7d2
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue