diff options
| author | Jack Nagel | 2014-08-30 16:36:40 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-30 16:36:40 -0500 |
| commit | 97f89877e3364864ebca05b299f4bd9729e93505 (patch) | |
| tree | 3c239bbae8e8fe76566a72ab38a455a882abde0e /Library | |
| parent | 7bfb12aa4565cb0c4a7edbdda1cbd267f10d2a20 (diff) | |
| download | brew-97f89877e3364864ebca05b299f4bd9729e93505.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 } |
