aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2015-12-07 19:34:42 +0000
committerMike McQuaid2015-12-07 19:34:42 +0000
commit7b26c585c2a26ec0dad201852ca4934c77fcc493 (patch)
tree7eca26829e672f705c9f9c1cabc534dca62709d2
parentbf2315b1f4ae0cb7c9bb80b651ef6389f66020b2 (diff)
downloadbrew-7b26c585c2a26ec0dad201852ca4934c77fcc493.tar.bz2
test-bot: use `uses --recursive`.
Sometimes the linkage means the recursive dependencies also link to libraries and need bumped.
-rw-r--r--Library/Homebrew/cmd/test-bot.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 85147e75c..498b8444d 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -428,7 +428,7 @@ module Homebrew
formula_name
end
- test "brew", "uses", canonical_formula_name
+ test "brew", "uses", "--recursive", canonical_formula_name
formula = Formulary.factory(canonical_formula_name)
@@ -512,7 +512,7 @@ module Homebrew
build_dependencies = dependencies - runtime_dependencies
unchanged_build_dependencies = build_dependencies - @formulae
- dependents = Utils.popen_read("brew", "uses", "--skip-build", "--skip-optional", canonical_formula_name).split("\n")
+ dependents = Utils.popen_read("brew", "uses", "--recursive", "--skip-build", "--skip-optional", canonical_formula_name).split("\n")
dependents -= @formulae
dependents = dependents.map { |d| Formulary.factory(d) }