aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-08-30 10:24:42 -0500
committerJack Nagel2014-08-30 10:24:42 -0500
commit265f92df76e77e30de14a91effe47d39403e819e (patch)
tree518a2b97c1af9634d1b3122559c6a057932eea45 /Library
parente10cb6f8b896dd8e49659dd16862ba25d17a8d2f (diff)
downloadhomebrew-265f92df76e77e30de14a91effe47d39403e819e.tar.bz2
Use different variable name
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-test-bot.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb
index 9af882a98..6ef014a60 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