Author: fschumacher
Date: Thu Sep 6 17:00:22 2018
New Revision: 1840236
URL: http://svn.apache.org/viewvc?rev=1840236&view=rev
Log:
Spaces and quotes will confuse windows batch files
As reported on the mailing list the space in quotes for the window title
will confuse the windows batch interpreter. Quotes alone seem to be OK, though.
Therefore we use an underscore instead of the space in the window title.
Follow-up to r1824800 and relates to Bugzilla Id: 62107
Modified:
jmeter/trunk/bin/jmeter.bat
jmeter/trunk/bin/jmeterw.cmd
Modified: jmeter/trunk/bin/jmeter.bat
URL:
http://svn.apache.org/viewvc/jmeter/trunk/bin/jmeter.bat?rev=1840236&r1=1840235&r2=1840236&view=diff
==============================================================================
--- jmeter/trunk/bin/jmeter.bat (original)
+++ jmeter/trunk/bin/jmeter.bat Thu Sep 6 17:00:22 2018
@@ -193,7 +193,7 @@ if not defined JMETER_COMPLETE_ARGS (
)
if "%JM_START%" == "start" (
- set JM_START=start "Apache JMeter"
+ set JM_START=start "Apache_JMeter"
)
%JM_START% "%JM_LAUNCH%" %ARGS% %JVM_ARGS% -jar "%JMETER_BIN%ApacheJMeter.jar"
%JMETER_CMD_LINE_ARGS%
Modified: jmeter/trunk/bin/jmeterw.cmd
URL:
http://svn.apache.org/viewvc/jmeter/trunk/bin/jmeterw.cmd?rev=1840236&r1=1840235&r2=1840236&view=diff
==============================================================================
--- jmeter/trunk/bin/jmeterw.cmd (original)
+++ jmeter/trunk/bin/jmeterw.cmd Thu Sep 6 17:00:22 2018
@@ -16,7 +16,7 @@ rem WITHOUT WARRANTIES OR CONDITIONS O
rem See the License for the specific language governing permissions and
rem limitations under the License.
-set JM_START=start "Apache JMeter"
+set JM_START=start "Apache_JMeter"
set JM_LAUNCH=javaw.exe
call jmeter %*