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

update-report: don't duplicate "already updated".

This would be displayed more than once when verbose output was enabled.

Closes Homebrew/homebrew#48469.
parent 9d216a53
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,10 @@ module Homebrew
puts "Updated #{updated_taps.size} tap#{plural(updated_taps.size)} " \
"(#{updated_taps.join(", ")})."
end
puts "Already up-to-date." unless master_updated || !updated_taps.empty?
if !master_updated && updated_taps.empty? && !ARGV.verbose?
puts "Already up-to-date."
end
Tap.clear_cache
Tap.each(&:link_manpages)
......
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