You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2018/11/08 15:15:45 UTC

celix git commit: CELIX-454: Fixes an issue in the runtime scripts, where a existing of a certain file was assumed.

Repository: celix
Updated Branches:
  refs/heads/develop 6f9b23dcb -> 12d5caf75


CELIX-454: Fixes an issue in the runtime scripts, where a existing of a certain file was assumed.


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/12d5caf7
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/12d5caf7
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/12d5caf7

Branch: refs/heads/develop
Commit: 12d5caf7560695ccf33c1f93b694e29a62564c26
Parents: 6f9b23d
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Thu Nov 8 16:15:04 2018 +0100
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Thu Nov 8 16:15:04 2018 +0100

----------------------------------------------------------------------
 cmake/cmake_celix/runtime_common.sh.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/12d5caf7/cmake/cmake_celix/runtime_common.sh.in
----------------------------------------------------------------------
diff --git a/cmake/cmake_celix/runtime_common.sh.in b/cmake/cmake_celix/runtime_common.sh.in
index 7c4be1d..32d3c33 100644
--- a/cmake/cmake_celix/runtime_common.sh.in
+++ b/cmake/cmake_celix/runtime_common.sh.in
@@ -92,7 +92,9 @@ function rt_run_deployment() {
         echo "  Clearing cache"
         rm -fr .cache
     fi
-    . ./release.sh #run deployment release
+    if [ -e release.sh ] ; then
+        . ./release.sh #run deployment release
+    fi
     echo "  Workdir: ${CONTAINERS_DIR}"
     echo "  Cmd used: '${DEBUG_OPTS} ./${DEPLOYMENT} ${ARGS}'"
     if [ "${USE_TERM}" = "TRUE" ] ; then