From f3f1993bf86ffeeec5987ef463d7788bf6958e17 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Sat, 6 Aug 2022 17:02:43 -0400 Subject: [PATCH] fix: add quotes to allow spaces on windows during helper script - fixes: #2855 --- 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 fb4374ef..05b4a078 100755 --- a/scripts/windows/apktool.bat +++ b/scripts/windows/apktool.bat @@ -36,7 +36,7 @@ if "%ATTR:~0,1%"=="-" if "%~x1"==".apk" ( ) :load -%java_exe% -jar -Duser.language=en -Dfile.encoding=UTF8 "%~dp0%BASENAME%%max%.jar" %fastCommand% %* +"%java_exe%" -jar -Duser.language=en -Dfile.encoding=UTF8 "%~dp0%BASENAME%%max%.jar" %fastCommand% %* rem Pause when ran non interactively for /f "tokens=2" %%# in ("%cmdcmdline%") do if /i "%%#" equ "/c" pause