Skip to content
Snippets Groups Projects
Commit 948ad02c authored by Michelle Nguyen's avatar Michelle Nguyen
Browse files

Display updated casks when running Already up-to-date.. Fixes #7011.

parent 10ba0d5a
No related branches found
No related tags found
No related merge requests found
......@@ -200,6 +200,10 @@ class Reporter
# Have a dedicated report array for deleted casks.
@report[:DC] << tap.formula_file_to_name(src)
end
if status == "M"
# Report updated casks
@report[:MC] << tap.formula_file_to_name(src)
end
end
next unless paths.any? { |p| tap.formula_file?(p) }
......@@ -422,6 +426,7 @@ class ReporterHub
dump_formula_report :M, "Updated Formulae"
dump_formula_report :R, "Renamed Formulae"
dump_formula_report :D, "Deleted Formulae"
dump_formula_report :MC, "Updated Casks"
end
private
......
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