From 7a0dd895d73cff03cff237d3f9df79f7d595f9be Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Mon, 21 Sep 2015 12:02:29 +0200 Subject: [PATCH] =?utf8?q?added=20dist.sh=20for=20easy=20distribution=20(i?= =?utf8?q?f=20the=20jar=20has=20been=20directly=20used)=20Signed-off-by:Ro?= =?utf8?q?land=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- dist.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dist.sh diff --git a/dist.sh b/dist.sh new file mode 100644 index 0000000..b3487d7 --- /dev/null +++ b/dist.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +NAME="jcore-logger-lib" +LIST=`find ../*/lib/${NAME}.jar` +LIST="${LIST} `find ../*/*-ejb/lib/${NAME}.jar`" + +for entry in ${LIST}; +do + cp -v dist/${NAME}.jar ${entry} +done -- 2.39.5