Skip to content
Snippets Groups Projects
Commit 7044bf7b authored by Martin Afanasjew's avatar Martin Afanasjew Committed by Mike McQuaid
Browse files

update: report tap updates and improve wording


Closes Homebrew/homebrew#43468.

Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
parent 5f86a60e
No related branches found
No related tags found
No related merge requests found
......@@ -39,12 +39,18 @@ module Homebrew
report = Report.new
master_updater = Updater.new(HOMEBREW_REPOSITORY)
master_updater.pull!
master_updated = master_updater.updated?
if master_updated
puts "Updated Homebrew from #{master_updater.initial_revision[0, 8]} " \
"to #{master_updater.current_revision[0, 8]}."
end
report.update(master_updater.report)
# rename Taps directories
# this procedure will be removed in the future if it seems unnecessasry
rename_taps_dir_if_necessary
updated_taps = []
Tap.each do |tap|
next unless tap.git?
......@@ -56,12 +62,18 @@ module Homebrew
rescue
onoe "Failed to update tap: #{tap}"
else
updated_taps << tap.name if updater.updated?
report.update(updater.report) do |_key, oldval, newval|
oldval.concat(newval)
end
end
end
end
unless updated_taps.empty?
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?
Tap.clear_cache
......@@ -109,9 +121,8 @@ module Homebrew
end
if report.empty?
puts "Already up-to-date."
puts "No changes to formulae." if master_updated || !updated_taps.empty?
else
puts "Updated Homebrew from #{master_updater.initial_revision[0, 8]} to #{master_updater.current_revision[0, 8]}."
report.dump
end
Descriptions.update_cache(report)
......@@ -317,6 +328,10 @@ class Updater
map
end
def updated?
initial_revision && initial_revision != current_revision
end
private
def formula_directory
......
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