formula_versions: set/unset raise_deprecation_exceptions.
This commit is contained in:
parent
c56625f8b7
commit
e0c8c00e87
@ -34,6 +34,7 @@ class FormulaVersions
|
|||||||
contents = file_contents_at_revision(rev)
|
contents = file_contents_at_revision(rev)
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
Homebrew.raise_deprecation_exceptions = true
|
||||||
nostdout { yield Formulary.from_contents(name, path, contents) }
|
nostdout { yield Formulary.from_contents(name, path, contents) }
|
||||||
rescue *IGNORED_EXCEPTIONS => e
|
rescue *IGNORED_EXCEPTIONS => e
|
||||||
# We rescue these so that we can skip bad versions and
|
# We rescue these so that we can skip bad versions and
|
||||||
@ -41,6 +42,8 @@ class FormulaVersions
|
|||||||
ohai "#{e} in #{name} at revision #{rev}", e.backtrace if ARGV.debug?
|
ohai "#{e} in #{name} at revision #{rev}", e.backtrace if ARGV.debug?
|
||||||
rescue FormulaUnavailableError
|
rescue FormulaUnavailableError
|
||||||
# Suppress this error
|
# Suppress this error
|
||||||
|
ensure
|
||||||
|
Homebrew.raise_deprecation_exceptions = false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user