From 96ba643f03f37cb0aecdc3210ebdb9868e0a9364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D0=BE=D1=80=D0=B8=D1=81=20=D0=92=D0=B5=D1=80=D1=85?= =?UTF-8?q?=D0=BE=D0=B2=D1=81=D0=BA=D0=B8=D0=B9?= Date: Mon, 10 Aug 2020 22:10:49 -0600 Subject: [PATCH] Print SHA checksum in double quotes to match formatting used in formulas, for easier copy/pasting. --- Library/Homebrew/cask/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cask/exceptions.rb b/Library/Homebrew/cask/exceptions.rb index 7d5c44b151..b36df6a97c 100644 --- a/Library/Homebrew/cask/exceptions.rb +++ b/Library/Homebrew/cask/exceptions.rb @@ -129,7 +129,7 @@ module Cask def to_s <<~EOS Cask '#{token}' requires a checksum: - #{Formatter.identifier("sha256 '#{actual}'")} + #{Formatter.identifier('sha256 "#{actual}"')} EOS end end