mirror of https://github.com/sbt/sbt.git
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:
parent
08a489450b
commit
53f847d703
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue