From 64e07fc9906af8c61abd07a40bb2c5492621912b Mon Sep 17 00:00:00 2001 From: Xu Cheng Date: Sun, 19 Apr 2015 14:31:19 +0800 Subject: audit: version string should not be ambiguous with revision part Closes Homebrew/homebrew#38810. Signed-off-by: Xu Cheng --- Library/Homebrew/cmd/audit.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Library') diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index a17bfff29..adde76ff9 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -847,6 +847,10 @@ class ResourceAuditor if version.to_s =~ /^v/ problem "version #{version} should not have a leading 'v'" end + + if version.to_s =~ /_\d+$/ + problem "version #{version} should not end with a underline and a number" + end end def audit_checksum -- cgit v1.2.3