Description
There are missing quotes in the karaf.bat file to correctly handle subdirectories with spaces. Please add them to the lines 80 and 81 as shown here:
if not "%KARAF_DATA%" == "" (
if not exist "%KARAF_DATA%" (
call :warn KARAF_DATA is not valid: "%KARAF_DATA%"
rem quotes are required here!!!!
call :warn Creating "%KARAF_DATA%"
mkdir "%KARAF_DATA%" )
)