From 73956a1b77af135600888750148cc303b2d999f1 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 30 Aug 2014 10:24:42 -0500 Subject: [PATCH] Use different variable name --- Library/Contributions/cmd/brew-test-bot.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index 9af882a984..6ef014a60f 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -326,11 +326,11 @@ class Test installed_gcc = false begin - dependencies = formula_object.stable.deps + deps = formula_object.stable.deps if formula_object.devel && !ARGV.include?('--HEAD') - dependencies += formula_object.devel.deps + deps += formula_object.devel.deps end - dependencies.each {|f| CompilerSelector.new(f.to_formula).compiler } + deps.each {|f| CompilerSelector.new(f.to_formula).compiler } CompilerSelector.new(formula_object).compiler rescue CompilerSelectionError => e