From caa8a0a50c3465e86366144ed9bb7157e19717b7 Mon Sep 17 00:00:00 2001 From: kexkey Date: Tue, 2 Apr 2019 14:34:36 -0400 Subject: [PATCH] Replaced source by point --- .../generators/app/templates/installer/start.sh | 2 +- .../generators/app/templates/installer/stop.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/generator-cyphernode/generators/app/templates/installer/start.sh b/install/generator-cyphernode/generators/app/templates/installer/start.sh index a0c11d6..60e429c 100644 --- a/install/generator-cyphernode/generators/app/templates/installer/start.sh +++ b/install/generator-cyphernode/generators/app/templates/installer/start.sh @@ -70,7 +70,7 @@ start_apps() { if [ -f $APP_START_SCRIPT_PATH ]; then APP_ID=$(basename $APP_SCRIPT_PATH) - source $APP_START_SCRIPT_PATH + . $APP_START_SCRIPT_PATH fi fi done diff --git a/install/generator-cyphernode/generators/app/templates/installer/stop.sh b/install/generator-cyphernode/generators/app/templates/installer/stop.sh index aeaf1b3..0c7e6d1 100644 --- a/install/generator-cyphernode/generators/app/templates/installer/stop.sh +++ b/install/generator-cyphernode/generators/app/templates/installer/stop.sh @@ -32,7 +32,7 @@ stop_apps() { if [ -f $APP_START_SCRIPT_PATH ]; then APP_ID=$(basename $APP_SCRIPT_PATH) - source $APP_START_SCRIPT_PATH + . $APP_START_SCRIPT_PATH fi fi done