Skip to content
Snippets Groups Projects
Commit 426737eb authored by Mike McQuaid's avatar Mike McQuaid
Browse files

outdated: allow passing formulae as arguments.


If formulae names are passed as arguments check if just they are outdated. Additionally, return a failed code if they are outdated.

This will hopefully be able to stop people complaining about the outdated error code as they can now just run e.g.:
`brew outdated git && brew upgrade git`

Closes Homebrew/homebrew#31242.

Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
parent c043a93b
No related branches found
No related tags found
No related merge requests found
......@@ -10,10 +10,12 @@ module Homebrew
puts f.name
end
end
Homebrew.failed = ARGV.formulae.any? && outdated_brews.any?
end
def outdated_brews
Formula.installed.map do |f|
brews = ARGV.formulae.any? ? ARGV.formulae : Formula.installed
brews.map do |f|
versions = f.rack.subdirs.map { |d| Keg.new(d).version }.sort!
if versions.all? { |version| f.pkg_version > version }
yield f, versions if block_given?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment