brew audit - check for empty md5

This commit is contained in:
Adam Vandenberg 2010-08-08 18:25:56 -07:00
parent 0734fa000d
commit 91b7000159

View File

@ -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 =~ /[ ]+$/