From 93cbab0021676010f195c8629d79fefdb00a2d40 Mon Sep 17 00:00:00 2001 From: Xu Cheng Date: Sun, 20 Mar 2016 13:53:48 +0800 Subject: [PATCH] Revert "brew fetch: only include sha256 in output" This reverts commit 0b38f9b286bc61e2b2d2232f80ea8ebc5909fb07. --- Library/Homebrew/cmd/fetch.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/fetch.rb b/Library/Homebrew/cmd/fetch.rb index 6e7f71a15f..fabe268e53 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