diff options
Diffstat (limited to 'src/main/scripts/createDBSchema.sh')
-rw-r--r-- | src/main/scripts/createDBSchema.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/scripts/createDBSchema.sh b/src/main/scripts/createDBSchema.sh index 01fef07..b9b8aeb 100644 --- a/src/main/scripts/createDBSchema.sh +++ b/src/main/scripts/createDBSchema.sh @@ -1,4 +1,4 @@ -#!/bin/ksh +#!/bin/sh # # ============LICENSE_START======================================================= # org.onap.aai @@ -30,10 +30,10 @@ # # -COMMON_ENV_PATH=$( cd "$(dirname "$0")" ; pwd -P ) +set -x; +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.GenTester ${PROJECT_HOME}/resources/logback.xml @@ -41,4 +41,4 @@ else execute_spring_jar org.onap.aai.schema.GenTester ${PROJECT_HOME}/resources/logback.xml "$1" fi; end_date; -exit 0
\ No newline at end of file +exit 0 |