File.normalize_path broken on Mac OS X
--------------------------------------
Key: BUILDR-54
URL: https://issues.apache.org/jira/browse/BUILDR-54
Project: Buildr
Issue Type: Bug
Components: Core features
Affects Versions: 1.3
Environment: Mac OS X
Reporter: Nick Sieger
Priority: Blocker
Fix For: 1.3
Attachments: common-mswin.patch
The File.normalize_path function introduced in rev 634463 is broken on Mac. The
code:
{noformat}
Config::CONFIG["host_os"] =~ /win/i
{noformat}
is not sufficient to detect Windows, because on Mac OS X:
{noformat}
$ ruby -rrbconfig -e 'puts Config::CONFIG["host_os"]'
darwin9.0
$ jruby -rrbconfig -e 'puts Config::CONFIG["host_os"]'
darwin
{noformat}
Attached is a patch to fix.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.