]> git.mxchange.org Git - jshop-receipt-core.git/commitdiff
dist.sh is now generic and can be easily distributed. You should now use it for
authorRoland Haeder <roland@mxchange.org>
Thu, 8 Oct 2015 15:57:09 +0000 (17:57 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 8 Oct 2015 15:57:09 +0000 (17:57 +0200)
EJB projects as the EJB jar will be copied to (my system specs, will be
improved later on) a Glassfish domain's "lib" directory. I do this here for
easy local deployment (not in-place).

Signed-off-by: Roland Häder <roland@mxchange.org>
dist.sh

diff --git a/dist.sh b/dist.sh
index 3c40b88352268961a071216f52f5259a0f165bfd..f48251e36059fd6bf0a0acb8832e9459060caac3 100755 (executable)
--- a/dist.sh
+++ b/dist.sh
@@ -1,10 +1,23 @@
 #!/bin/sh
 
-NAME="jshop-receipt-lib"
+NAME="${PWD##*/}"
+DIST="dist/${NAME}.jar"
 LIST=`find ../*/lib/${NAME}.jar`
 LIST="${LIST} `find ../*/*-ejb/lib/${NAME}.jar`"
+LIST="${LIST} ${HOME}/gf_domains/domain1/lib/"
 
-for entry in ${LIST};
+for target in ${LIST};
 do
-       cp -v dist/${NAME}.jar ${entry}
+       if [ ! -f "${DIST}" ]
+       then
+               echo "$0: '${DIST}' not found."
+       elif [ -d "${target}" ]
+       then
+               cp -v "${DIST}" "${target}"
+       elif [ -f "${target}" ]
+       then
+               cp -v "${DIST}" "${target}"
+       else
+               echo "$0: Target '${target}' not found."
+       fi
 done