Fix JVM_DEBUG in sbt.bat

JVM_DEBUG was broken due to a copy-pasta error in sbt.bat. This
commit corrects the value assignment to the variable and therefore
fixes the problem.
This commit is contained in:
Christian Lachner 2019-06-30 11:19:18 +02:00
parent 08a489450b
commit 53f847d703
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ set INIT_SBT_VERSION=_TO_BE_REPLACED
:args_loop
if "%~1" == "" goto args_end
if "%~1" == "-jvm-debug" set set JVM_DEBUG=true
if "%~1" == "--jvm-debug" set set JVM_DEBUG=true
if "%~1" == "-jvm-debug" set JVM_DEBUG=true
if "%~1" == "--jvm-debug" set JVM_DEBUG=true
if "%JVM_DEBUG%" == "true" (
set /a JVM_DEBUG_PORT=5005 2>nul >nul