diff options
author | Harish Venkata Kajur <vk250x@att.com> | 2019-01-04 13:34:33 -0500 |
---|---|---|
committer | Harish Venkata Kajur <vk250x@att.com> | 2019-01-08 22:03:06 -0500 |
commit | 4a65c6f42c9eb705d7e3155788278674ff2b0a67 (patch) | |
tree | 874de6e711a2e80728ddc1a16d69f216e016d177 /src/main/scripts | |
parent | d582cc40ecabf097f6b2f9c804eff998f922a6f5 (diff) |
Update the GenTester to exit properly
Issue-ID: AAI-1958
Change-Id: Ifbffd1c15e474dce0cc7b3102f7b6961a72a864e
Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
Diffstat (limited to 'src/main/scripts')
-rw-r--r-- | src/main/scripts/common_functions.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/scripts/common_functions.sh b/src/main/scripts/common_functions.sh index ed795fe..55fb516 100644 --- a/src/main/scripts/common_functions.sh +++ b/src/main/scripts/common_functions.sh @@ -49,7 +49,10 @@ execute_spring_jar(){ JAVA_OPTS="${JAVA_OPTS} ${JAVA_POST_OPTS}"; - ${JAVA_HOME}/bin/java ${JVM_OPTS} ${JAVA_OPTS} -jar ${EXECUTABLE_JAR} "$@" + ${JAVA_HOME}/bin/java ${JVM_OPTS} ${JAVA_OPTS} -jar ${EXECUTABLE_JAR} "$@" || { + echo "Failed to run the tool $0 successfully"; + exit 1; + } } # Prints the start date and the script that the user called |