diff options
Diffstat (limited to 'Library/Homebrew/cmd/fetch.rb')
| -rw-r--r-- | Library/Homebrew/cmd/fetch.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Library/Homebrew/cmd/fetch.rb b/Library/Homebrew/cmd/fetch.rb index 6e7f71a15..fabe268e5 100644 --- a/Library/Homebrew/cmd/fetch.rb +++ b/Library/Homebrew/cmd/fetch.rb @@ -100,7 +100,7 @@ module Homebrew      return unless download.file?      puts "Downloaded to: #{download}" unless already_fetched -    puts "SHA256: #{download.sha256}" +    puts Checksum::TYPES.map { |t| "#{t.to_s.upcase}: #{download.send(t)}" }      f.verify_download_integrity(download)    end | 
