From 91b7000159af1f0df686891616ab175722b71f4d Mon Sep 17 00:00:00 2001 From: Adam Vandenberg <flangy@gmail.com> Date: Sun, 8 Aug 2010 18:25:56 -0700 Subject: [PATCH] brew audit - check for empty md5 --- Library/Contributions/examples/brew-audit.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Library/Contributions/examples/brew-audit.rb b/Library/Contributions/examples/brew-audit.rb index cd838cceda..e4e7d14dee 100755 --- a/Library/Contributions/examples/brew-audit.rb +++ b/Library/Contributions/examples/brew-audit.rb @@ -50,6 +50,11 @@ ff.each do |f| problems << " * \"#{$1}\" should be \"\#{#{$2}}\"" end + # Empty checksums + if text =~ /md5\s+\'\'/ + problems << " * md5 is empty" + end + # Don't complain about spaces in patches split_patch = (text.split("__END__")[0]).strip() if split_patch =~ /[ ]+$/ -- GitLab