You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When javaw is not in the path, but JAVA_HOME is set to a path with whitespaces (eg. c:\Program Files\OpenJDK\jdk-19.0.2 )
launch.bat and others fail launching winfoom.
This is because neither testing if exist %JAVA_HOME%\bin\javaw.exe nor start /B %%JAVA_EXE% work correctly with whitespaces.
it could be fixed be redefining JAVA_HOME with
for%%Iin ("%JAVA_HOME%") dosetJAVA_HOME=%%~sI
I will create an PR
The text was updated successfully, but these errors were encountered:
When javaw is not in the path, but
JAVA_HOME
is set to a path with whitespaces (eg.c:\Program Files\OpenJDK\jdk-19.0.2
)launch.bat and others fail launching winfoom.
This is because neither testing
if exist %JAVA_HOME%\bin\javaw.exe
norstart /B %%JAVA_EXE%
work correctly with whitespaces.it could be fixed be redefining
JAVA_HOME
withI will create an PR
The text was updated successfully, but these errors were encountered: