extract: add progress message when searching Git history

For the impatient ones out there.
This commit is contained in:
Caleb Xu 2018-08-25 13:40:57 -04:00
parent ff2ce2f093
commit a8563afc9e

View File

@ -78,6 +78,7 @@ module Homebrew
file = repo/"Formula/#{name}.rb"
if args.version
ohai "Searching repository history"
version = args.version
rev = "HEAD"
test_formula = nil
@ -99,6 +100,7 @@ module Homebrew
version = Formulary.factory(file).version
result = File.read(file)
else
ohai "Searching repository history"
rev = Git.last_revision_commit_of_file(repo, file)
version = formula_at_revision(repo, name, file, rev).version
odie "Could not find #{name}! The formula or version may not have existed." if rev.empty?