diff options
| author | Adam Vandenberg | 2012-02-16 20:40:45 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-02-16 20:40:45 -0800 | 
| commit | a51e0eba0c4595c69ce22d1e0d4175a7c747e522 (patch) | |
| tree | a18f0be9b4976103aaf7fb8314fda2ac6ada2550 | |
| parent | fe0e8edc28723ba0f59df36570404d7439a64e92 (diff) | |
| download | homebrew-a51e0eba0c4595c69ce22d1e0d4175a7c747e522.tar.bz2 | |
cowpatty: make md5 lowercase to fix audit warning
| -rw-r--r-- | Library/Formula/cowpatty.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Formula/cowpatty.rb b/Library/Formula/cowpatty.rb index d381ffada..d36541b28 100644 --- a/Library/Formula/cowpatty.rb +++ b/Library/Formula/cowpatty.rb @@ -1,9 +1,9 @@  require 'formula'  class Cowpatty < Formula -  url 'http://www.willhackforsushi.com/code/cowpatty/4.3/cowpatty-4.3.tgz'    homepage 'http://www.willhackforsushi.com/Cowpatty.html' -  md5 'DECCAC0763A05EF7014107D347BF9190' +  url 'http://www.willhackforsushi.com/code/cowpatty/4.3/cowpatty-4.3.tgz' +  md5 'deccac0763a05ef7014107d347bf9190'    def install      inreplace "Makefile", "/usr/local/", "#{prefix}/" | 
