jruby.bat errors out with unexpected characters
-----------------------------------------------
Key: JRUBY-3970
URL: http://jira.codehaus.org/browse/JRUBY-3970
Project: JRuby
Issue Type: Bug
Components: Windows
Affects Versions: JRuby 1.4
Environment: WinXP 32-bit
Reporter: Ian Dees
Fix For: JRuby 1.4
Attachments: jruby-batch-file.patch
Running JRuby built from the master branch yields the following:
{noformat}
C:\> jruby
!= was unexpected at this time.
{noformat}
The {{jruby.bat}} file uses the following test for classpath inequality:
{noformat}
if "%CP%" != "" (
{noformat}
XP doesn't like the {{\!=}} syntax. Either of the following fixes the issue on
my machine:
{noformat}
if not "%CP%" == "" (
{noformat}
or:
{noformat}
if "%CP%" neq "" (
{noformat}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email