From 63a8d092d891f0c261b3355a360ab4c1ad8790c4 Mon Sep 17 00:00:00 2001 From: Jonathan Schoeller Date: Tue, 13 Sep 2022 22:28:31 +1000 Subject: [PATCH] Windows: Correct helper script quoting (#2882) --- scripts/windows/apktool.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/windows/apktool.bat b/scripts/windows/apktool.bat index 05b4a078..f0d14869 100755 --- a/scripts/windows/apktool.bat +++ b/scripts/windows/apktool.bat @@ -6,7 +6,7 @@ chcp 65001 2>nul >nul set java_exe=java.exe if defined JAVA_HOME ( -set java_exe="%JAVA_HOME%\bin\java.exe" +set "java_exe=%JAVA_HOME%\bin\java.exe" ) rem Find the highest version .jar available in the same directory as the script