]> git.mxchange.org Git - jcore.git/blob - dist.sh
added missing javadoc
[jcore.git] / dist.sh
1 #!/bin/sh
2
3 NAME="jcore"
4 LIST=`find ../*/lib/${NAME}.jar`
5 LIST="${LIST} `find ../*/*-ejb/lib/${NAME}.jar`"
6
7 for entry in ${LIST};
8 do
9         cp -v dist/${NAME}.jar ${entry}
10 done