diff options
| author | Jack Nagel | 2014-08-30 16:36:40 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-30 16:36:40 -0500 |
| commit | 36d8e0910501f802e6365d0df06582047b2ecfa0 (patch) | |
| tree | 327e719466df83fce70efeee3224a34afe5bf3fc /Library | |
| parent | 46f04a61b16caa0dd28c412fbb44a5b580e75849 (diff) | |
| download | homebrew-36d8e0910501f802e6365d0df06582047b2ecfa0.tar.bz2 | |
Convert deps collections to arrays first
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/brew-test-bot.rb | 4 |
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 } |
