aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/bundler/spec_set.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bundler/spec_set.rb b/lib/bundler/spec_set.rb
index a19d18388a..dc55e5eaed 100644
--- a/lib/bundler/spec_set.rb
+++ b/lib/bundler/spec_set.rb
@@ -24,7 +24,7 @@ module Bundler
specs_for_dep = spec_for_dependency(dep, match_current_platform)
if specs_for_dep.any?
- match_current_platform ? specs += specs_for_dep : specs |= specs_for_dep
+ specs += specs_for_dep
specs_for_dep.first.dependencies.each do |d|
next if d.type == :development
@@ -40,6 +40,8 @@ module Bundler
specs << spec
end
+ specs.uniq! unless match_current_platform
+
check ? true : specs
end