diff options
| author | Xu Cheng | 2016-03-20 13:53:48 +0800 | 
|---|---|---|
| committer | Xu Cheng | 2016-03-20 14:55:58 +0800 | 
| commit | 93cbab0021676010f195c8629d79fefdb00a2d40 (patch) | |
| tree | 2fb9a52512adc9a02921b37e026b1a22f976cae5 /Library/Homebrew/cmd/fetch.rb | |
| parent | 8aaa95ee993187f763b0953d3720b5f6308472d3 (diff) | |
| download | brew-93cbab0021676010f195c8629d79fefdb00a2d40.tar.bz2 | |
Revert "brew fetch: only include sha256 in output"
This reverts commit 0b38f9b286bc61e2b2d2232f80ea8ebc5909fb07.
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 | 
