Replaced source by point

This commit is contained in:
kexkey
2019-04-02 14:34:36 -04:00
committed by kexkey
parent fd6e791d3c
commit caa8a0a50c
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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