jruby.bat doesn't run on Windows 7
----------------------------------

                 Key: JRUBY-3953
                 URL: http://jira.codehaus.org/browse/JRUBY-3953
             Project: JRuby
          Issue Type: Bug
          Components: Windows
    Affects Versions: JRuby 1.4
         Environment: Windows 7 32-Bit
            Reporter: Michael Johann
            Priority: Blocker
             Fix For: JRuby 1.4


Wenn calling jruby.bat from cmd.exe under windows 7 the following if statement 
cannot be executed:

{{if "%CP%" != "" (
  set CLASSPATH = ""
)
}}

The problem is the comparison with {{!=}} which is not available under windows 
7.

This can be fixed with using the following alternative:

{{if not "%CP%" == "" (
  set CLASSPATH = ""
)}}




-- 
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


Reply via email to