Rename livecheck_formulae_and_casks to run_checks

This commit is contained in:
Seeker 2020-09-03 20:55:33 -07:00 committed by Sam Ford
parent 064e93df5b
commit f06f83ca69
No known key found for this signature in database
GPG Key ID: 95209E46C7FFDEFE
2 changed files with 2 additions and 2 deletions

View File

@ -80,6 +80,6 @@ module Homebrew
raise UsageError, "No formulae or casks to check." if formulae_and_casks_to_check.blank?
Livecheck.livecheck_formulae_and_casks(formulae_and_casks_to_check, args)
Livecheck.run_checks(formulae_and_casks_to_check, args)
end
end

View File

@ -44,7 +44,7 @@ module Homebrew
# Executes the livecheck logic for each formula/cask in the
# `formulae_and_casks_to_check` array and prints the results.
# @return [nil]
def livecheck_formulae_and_casks(formulae_and_casks_to_check, args)
def run_checks(formulae_and_casks_to_check, args)
# Identify any non-homebrew/core taps in use for current formulae
non_core_taps = {}
formulae_and_casks_to_check.each do |fc|