summaryrefslogtreecommitdiff
path: root/lib/bundler/dependency.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-11-11 19:53:26 -0600
committerAndre Arko <andre@arko.net>2010-11-11 19:53:26 -0600
commit42939ed9b232d8ac21080bf07bfcbc1a62e31619 (patch)
treeba6b396b5bb3eea952a6fbc125c064c8b700e21e /lib/bundler/dependency.rb
parentd22249afa891fb0b1dd421966d94d1536ffad3e7 (diff)
downloadbundler-42939ed9b232d8ac21080bf07bfcbc1a62e31619.tar.gz
Fix mingw? check to actually check for mingw
Diffstat (limited to 'lib/bundler/dependency.rb')
-rw-r--r--lib/bundler/dependency.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/dependency.rb b/lib/bundler/dependency.rb
index 38f4e6ea0f..d074fd26cc 100644
--- a/lib/bundler/dependency.rb
+++ b/lib/bundler/dependency.rb
@@ -113,7 +113,7 @@ module Bundler
end
def mingw?
- Bundler::WINDOWS
+ Bundler::WINDOWS && Gem::Platform.local.os == "mingw32"
end
end
end