aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-08-30 16:36:40 -0500
committerJack Nagel2014-08-30 16:36:40 -0500
commit36d8e0910501f802e6365d0df06582047b2ecfa0 (patch)
tree327e719466df83fce70efeee3224a34afe5bf3fc
parent46f04a61b16caa0dd28c412fbb44a5b580e75849 (diff)
downloadhomebrew-36d8e0910501f802e6365d0df06582047b2ecfa0.tar.bz2
Convert deps collections to arrays first
-rwxr-xr-xLibrary/Contributions/cmd/brew-test-bot.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb
index 6ef014a60..e8e40c445 100755
--- a/Library/Contributions/cmd/brew-test-bot.rb
+++ b/Library/Contributions/cmd/brew-test-bot.rb
@@ -326,9 +326,9 @@ class Test
installed_gcc = false
begin
- deps = formula_object.stable.deps
+ deps = formula_object.stable.deps.to_a
if formula_object.devel && !ARGV.include?('--HEAD')
- deps += formula_object.devel.deps
+ deps |= formula_object.devel.deps.to_a
end
deps.each {|f| CompilerSelector.new(f.to_formula).compiler }