https://bz.apache.org/bugzilla/show_bug.cgi?id=58415
Bug ID: 58415
Summary: JMeter.bat fails if JMETER_BIN is set and bin folder
contains spaces
Product: JMeter
Version: 2.11
Hardware: PC
Status: NEW
Severity: normal
Priority: P2
Component: Main
Assignee: [email protected]
Reporter: [email protected]
Need quotes around a couple more paths in jmeter.bat (similar to bug 39677),
if .%JM_LAUNCH% == . set JM_LAUNCH=java.exe
should be
if ".%JM_LAUNCH%" == "." set JM_LAUNCH=java.exe
and
if .%JMETER_BIN% == . set JMETER_BIN=%~dp0
should be
if ".%JMETER_BIN%" == "." set JMETER_BIN=%~dp0
Wouldn't so much of a problem except that Windows put a space in the middle of
the name for the default program folder....
--
You are receiving this mail because:
You are the assignee for the bug.