From 33fac12a15e41f6087d8ccadce99725e4f27bcc0 Mon Sep 17 00:00:00 2001 From: Jiri Vanek Date: Thu, 7 Mar 2024 12:16:15 +0100 Subject: [PATCH] Remvoed few dangling spaces and semicolons --- run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run.sh b/run.sh index 3184bb7..95755fd 100755 --- a/run.sh +++ b/run.sh @@ -40,10 +40,10 @@ set -e set -o pipefail JAVA="${1}" -if [ "x$JAVA" == "x" ] ; then +if [ "x$JAVA" == "x" ] ; then echo "Jdk is mandatory param (bugid is optional)" exit 1 -fi; +fi if [ "x$CYGWIN" == "xtrue" ] ; then JAVA="$(cygpath -aw "${JAVA}")" @@ -51,7 +51,7 @@ fi if [ "x$JAVA_HOME" == "x" ] ; then JAVA_HOME="$(dirname $(dirname $(readlink -f $(which javac))))" -fi; +fi if [ "x$CYGWIN" == "xtrue" ] ; then JAVA_HOME="$(cygpath -aw "${JAVA_HOME}")"