diff options
Diffstat (limited to 'Library/Contributions/examples/brew-fetch.rb')
| -rwxr-xr-x | Library/Contributions/examples/brew-fetch.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/examples/brew-fetch.rb b/Library/Contributions/examples/brew-fetch.rb index 04573669f..2f7ddc6f8 100755 --- a/Library/Contributions/examples/brew-fetch.rb +++ b/Library/Contributions/examples/brew-fetch.rb @@ -11,7 +11,7 @@ ARGV.formulae.each do |f| the_tarball = f.downloader.fetch if the_tarball.kind_of? Pathname - md5 = the_tarball.md5 - puts "MD5 is #{md5}" + puts "MD5: #{the_tarball.md5}" + puts "SHA1: #{the_tarball.sha1}" end end |
