From 6823e15cf08c68ca67f688159536f7a506d1969e Mon Sep 17 00:00:00 2001 From: liu fengyun Date: Mon, 6 Feb 2017 14:51:24 +0100 Subject: fix #1484: position of while incorrect in debug --- bin/dotr | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/dotr b/bin/dotr index f00760006..e5a632565 100755 --- a/bin/dotr +++ b/bin/dotr @@ -8,6 +8,10 @@ fi DOTTY_ROOT="$(dirname "$DOTTY_ROOT")" DOTTY_ROOT="$( cd "$DOTTY_ROOT" >& /dev/null && pwd )/.." # absolute +# debug +DEBUG_STR=-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005 +DEBUG= + # Load common functions and variables source "$DOTTY_ROOT"/bin/common @@ -24,10 +28,21 @@ function runMain { echo "java bin not detected - please specify with \$JAVA_BIN or install java to a default location" exit 1 else - eval "$jbin $CLASS_PATH $@" + eval "$jbin $DEBUG $CLASS_PATH $@" fi } +# parse command line params -d to enable debugging +while getopts "dx" opt; do + case "$opt" in + d) + DEBUG="$DEBUG_STR" + ;; + esac +done + +shift $((OPTIND-1)) + first_arg="$1" if [ -z "$1" ]; then -- cgit v1.2.3