diff options
| author | Mike McQuaid | 2015-12-07 19:34:42 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2015-12-07 19:34:42 +0000 | 
| commit | 7b26c585c2a26ec0dad201852ca4934c77fcc493 (patch) | |
| tree | 7eca26829e672f705c9f9c1cabc534dca62709d2 | |
| parent | bf2315b1f4ae0cb7c9bb80b651ef6389f66020b2 (diff) | |
| download | brew-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.rb | 4 | 
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) }  | 
