mirror of https://github.com/sbt/sbt.git
fix: Use goto :eof for consistency with --script-version handler (#8717)
Use goto :eof instead of goto :end to match the pattern used by --script-version and other early exits in the batch file. This should fix the Windows test hang issue.
This commit is contained in:
parent
1ae2d3af57
commit
8251ac544a
|
|
@ -628,7 +628,7 @@ if !sbt_args_print_version! equ 1 (
|
|||
echo.
|
||||
echo [info] sbt runner (sbt-the-batch-script) is a runner to run any declared version of sbt.
|
||||
echo [info] Actual version of the sbt is declared using project\build.properties for each build.
|
||||
goto :end
|
||||
goto :eof
|
||||
)
|
||||
|
||||
if !run_native_client! equ 1 (
|
||||
|
|
|
|||
Loading…
Reference in New Issue