Skip to content
Snippets Groups Projects
Unverified Commit 47348709 authored by Mike McQuaid's avatar Mike McQuaid Committed by GitHub
Browse files

Merge pull request #11710 from hyuraku/formula_auditor_repair-audit_specs

formula_auditor: repair audit_specs
parents e344cb6a 57911f47
No related branches found
No related tags found
No related merge requests found
......@@ -555,14 +555,6 @@ module Homebrew
)
end
if (stable = formula.stable)
version = stable.version
problem "Stable: version (#{version}) is set to a string without a digit" if version.to_s !~ /\d/
if version.to_s.start_with?("HEAD")
problem "Stable: non-HEAD version name (#{version}) should not begin with HEAD"
end
end
return unless @core_tap
if formula.head && @versioned_formula &&
......@@ -574,7 +566,14 @@ module Homebrew
return unless stable
return unless stable.url
stable_version_string = stable.version.to_s
version = stable.version
problem "Stable: version (#{version}) is set to a string without a digit" if version.to_s !~ /\d/
stable_version_string = version.to_s
if stable_version_string.start_with?("HEAD")
problem "Stable: non-HEAD version name (#{stable_version_string}) should not begin with HEAD"
end
stable_url_version = Version.parse(stable.url)
stable_url_minor_version = stable_url_version.minor.to_i
......
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