]> git.mxchange.org Git - juser-activity-core.git/blobdiff - dist.sh
Added ProfileMode instead of boolean public/private flag. This is way more flexible...
[juser-activity-core.git] / dist.sh
diff --git a/dist.sh b/dist.sh
index 73169847ec0444e2ca24b51af43566714e99d31d..f48251e36059fd6bf0a0acb8832e9459060caac3 100755 (executable)
--- a/dist.sh
+++ b/dist.sh
@@ -1,10 +1,23 @@
 #!/bin/sh
 
-NAME="juser-core"
+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