Fix cygwin check

git-svn-id: file:///home/svn/framework3/trunk@7003 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2009-09-04 15:11:28 +00:00
parent e7b200bc23
commit 09eb693a97
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ end
def self.is_cygwin
return @@is_cygwin if @@is_cygwin
@@is_cygwin = (RUBY_PLATFORM =~ /mswin32/) ? true : false
@@is_cygwin = (RUBY_PLATFORM =~ /cygwin/) ? true : false
end
def self.is_macosx