Fix uses/deps for Leopard
This commit is contained in:
parent
7d7b5cfab0
commit
64cf554a7b
4
bin/brew
4
bin/brew
@ -258,14 +258,14 @@ begin
|
|||||||
# For each formula given, show which other formulas depend on it.
|
# For each formula given, show which other formulas depend on it.
|
||||||
# We only go one level up, ie. direct dependencies.
|
# We only go one level up, ie. direct dependencies.
|
||||||
when 'uses'
|
when 'uses'
|
||||||
puts *ARGV.formulae.map{ |f| Formula.all.select{ |ff| ff.deps.include? f.name }.map(&:name) }.flatten.uniq.sort
|
puts *ARGV.formulae.map{ |f| Formula.all.select{ |ff| ff.deps.include? f.name }.map{|f| f.name} }.flatten.uniq.sort
|
||||||
|
|
||||||
when 'deps'
|
when 'deps'
|
||||||
require 'formula_installer'
|
require 'formula_installer'
|
||||||
if ARGV.include?("-1") or ARGV.include?("--1")
|
if ARGV.include?("-1") or ARGV.include?("--1")
|
||||||
puts *ARGV.formulae.map{ |f| f.deps or [] }.flatten.uniq.sort
|
puts *ARGV.formulae.map{ |f| f.deps or [] }.flatten.uniq.sort
|
||||||
else
|
else
|
||||||
puts *ARGV.formulae.map{ |f| FormulaInstaller.expand_deps(f).map(&:name) }.flatten.uniq.sort
|
puts *ARGV.formulae.map{ |f| FormulaInstaller.expand_deps(f).map{|f| f.name} }.flatten.uniq.sort
|
||||||
end
|
end
|
||||||
|
|
||||||
when 'cat'
|
when 'cat'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user