brew fetch: only include sha256 in output

Closes Homebrew/homebrew#50067.

Signed-off-by: Andrew Janke <andrew@apjanke.net>
This commit is contained in:
Andrew Janke 2016-03-13 06:06:39 -04:00 committed by Xu Cheng
parent 236a18debe
commit a74e872409

View File

@ -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