diff options
Diffstat (limited to 'src/main/scripts/historyCreateDBSchema.sh')
-rw-r--r-- | src/main/scripts/historyCreateDBSchema.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main/scripts/historyCreateDBSchema.sh b/src/main/scripts/historyCreateDBSchema.sh index 7a08a68..834c1fe 100644 --- a/src/main/scripts/historyCreateDBSchema.sh +++ b/src/main/scripts/historyCreateDBSchema.sh @@ -1,4 +1,4 @@ -#!/bin/ksh +#!/bin/sh # # ============LICENSE_START======================================================= # org.onap.aai @@ -23,10 +23,9 @@ # # -COMMON_ENV_PATH=$( cd "$(dirname "$0")" ; pwd -P ) +COMMON_ENV_PATH=$( cd "$(dirname "$0")" ; pwd -P ) . ${COMMON_ENV_PATH}/common_functions.sh start_date; -check_user; source_profile; if [ -z "$1" ]; then execute_spring_jar org.onap.aai.schema.GenTester4Hist ${PROJECT_HOME}/resources/logback.xml @@ -34,4 +33,4 @@ else execute_spring_jar org.onap.aai.schema.GenTester4Hist ${PROJECT_HOME}/resources/logback.xml "$1" fi; end_date; -exit 0
\ No newline at end of file +exit 0 |