From a74e872409d0c8a16ff806a52e76adcefcf2c4da Mon Sep 17 00:00:00 2001 From: Andrew Janke Date: Sun, 13 Mar 2016 06:06:39 -0400 Subject: brew fetch: only include sha256 in output Closes Homebrew/homebrew#50067. Signed-off-by: Andrew Janke --- Library/Homebrew/cmd/fetch.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Homebrew/cmd') diff --git a/Library/Homebrew/cmd/fetch.rb b/Library/Homebrew/cmd/fetch.rb index fabe268e5..6e7f71a15 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 Checksum::TYPES.map { |t| "#{t.to_s.upcase}: #{download.send(t)}" } + puts "SHA256: #{download.sha256}" f.verify_download_integrity(download) end -- cgit v1.2.3