mirror of https://github.com/sbt/sbt.git
fix #248. Move setting JVM's debug option after executing `:copyrt` label, in order to avoid unintended debug string written to `rtext.txt`
This commit is contained in:
parent
d19348f109
commit
0e8655fd5d
|
|
@ -104,16 +104,16 @@ if not exist build.sbt (
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if defined JVM_DEBUG_PORT (
|
|
||||||
set _JAVA_OPTS=!_JAVA_OPTS! -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=!JVM_DEBUG_PORT!
|
|
||||||
)
|
|
||||||
|
|
||||||
call :process
|
call :process
|
||||||
|
|
||||||
call :checkjava
|
call :checkjava
|
||||||
|
|
||||||
call :copyrt
|
call :copyrt
|
||||||
|
|
||||||
|
if defined JVM_DEBUG_PORT (
|
||||||
|
set _JAVA_OPTS=!_JAVA_OPTS! -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=!JVM_DEBUG_PORT!
|
||||||
|
)
|
||||||
|
|
||||||
call :sync_preloaded
|
call :sync_preloaded
|
||||||
|
|
||||||
call :run %SBT_ARGS%
|
call :run %SBT_ARGS%
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue