aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/fetch.rb
diff options
context:
space:
mode:
authorXu Cheng2016-03-20 13:53:48 +0800
committerXu Cheng2016-03-20 14:55:58 +0800
commit93cbab0021676010f195c8629d79fefdb00a2d40 (patch)
tree2fb9a52512adc9a02921b37e026b1a22f976cae5 /Library/Homebrew/cmd/fetch.rb
parent8aaa95ee993187f763b0953d3720b5f6308472d3 (diff)
downloadbrew-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.rb2
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