diff options
Diffstat (limited to 'Library/Homebrew')
| -rwxr-xr-x | Library/Homebrew/cmd/audit.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index d267c2ba3..9f4caa9a3 100755 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -158,11 +158,12 @@ end def audit_formula_version f, text # Version as defined in the DSL (or nil) version_text = f.class.send('version').to_s + # Version as determined from the URL version_url = Pathname.new(f.url).version if version_url == version_text - return [" * version "+version_text+" is redundant with version scanned from url"] + return [" * version #{version_text} is redundant with version scanned from url"] end return [] |
