From d11f3623e3b1561df20e58ddcab7d107f6960bf8 Mon Sep 17 00:00:00 2001 From: Eruis2579 Date: Tue, 10 Feb 2026 09:49:47 +0100 Subject: [PATCH] fix: Quote variable assignment to prevent trailing space issues in sbt.bat (#8717) --- launcher-package/src/universal/bin/sbt.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher-package/src/universal/bin/sbt.bat b/launcher-package/src/universal/bin/sbt.bat index 4158ff00c..19cc28e40 100755 --- a/launcher-package/src/universal/bin/sbt.bat +++ b/launcher-package/src/universal/bin/sbt.bat @@ -96,7 +96,7 @@ if defined JAVA_HOMES ( if exist "project\build.properties" ( for /F "eol=# delims== tokens=1*" %%a in (project\build.properties) do ( if "%%a" == "sbt.version" if not "%%b" == "" ( - set build_props_sbt_version=%%b + set "build_props_sbt_version=%%b" ) ) )