From 8143bbfc2406f89a0f82116fe8c6566993d02140 Mon Sep 17 00:00:00 2001 From: abe Date: Tue, 3 Mar 2020 14:33:49 +0900 Subject: [PATCH] Fix --jvm-debug not working on Windows --- src/universal/bin/sbt.bat | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/universal/bin/sbt.bat b/src/universal/bin/sbt.bat index 105c9e7b2..d4fb4dbf3 100755 --- a/src/universal/bin/sbt.bat +++ b/src/universal/bin/sbt.bat @@ -375,6 +375,9 @@ if defined _jvm_debug_arg ( rem next argument wasn't a port, set a default and process next arg set /A JVM_DEBUG_PORT=5005 goto args_loop + ) else ( + shift + goto args_loop ) ) )