diff --git a/Library/Homebrew/cask/artifact/abstract_uninstall.rb b/Library/Homebrew/cask/artifact/abstract_uninstall.rb index 2eb0967222..7705f9f65d 100644 --- a/Library/Homebrew/cask/artifact/abstract_uninstall.rb +++ b/Library/Homebrew/cask/artifact/abstract_uninstall.rb @@ -133,8 +133,11 @@ module Cask sig { returns(String) } def automation_access_instructions - "Enable Automation Access for “Terminal > System Events” in " \ - "“System Preferences > Security > Privacy > Automation” if you haven't already." + <<~EOS + Enable Automation access for "Terminal → System Events" in: + System Preferences → Security & Privacy → Privacy → Automation + if you haven't already. + EOS end # :quit/:signal must come before :kext so the kext will not be in use by a running process diff --git a/Library/Homebrew/cask/cmd/fetch.rb b/Library/Homebrew/cask/cmd/fetch.rb index 855efa7f0f..b9239216ae 100644 --- a/Library/Homebrew/cask/cmd/fetch.rb +++ b/Library/Homebrew/cask/cmd/fetch.rb @@ -43,7 +43,7 @@ module Cask download = Download.new(cask, **options) download.clear_cache if args.force? downloaded_path = download.fetch - ohai "Success! Downloaded to -> #{downloaded_path}" + ohai "Success! Downloaded to: #{downloaded_path}" end end end diff --git a/Library/Homebrew/cask/dsl/caveats.rb b/Library/Homebrew/cask/dsl/caveats.rb index 705a6b35c9..17641990c0 100644 --- a/Library/Homebrew/cask/dsl/caveats.rb +++ b/Library/Homebrew/cask/dsl/caveats.rb @@ -69,15 +69,15 @@ module Cask end caveat :unsigned_accessibility do |access = "Accessibility"| - # access: the category in System Preferences -> Security & Privacy -> Privacy the app requires. + # access: the category in System Preferences > Security & Privacy > Privacy the app requires. <<~EOS #{@cask} is not signed and requires Accessibility access, so you will need to re-grant Accessibility access every time the app is updated. Enable or re-enable it in: - System Preferences → Security & Privacy → Privacy -> #{access} - To re-enable untick and retick #{@cask}.app. + System Preferences → Security & Privacy → Privacy → #{access} + To re-enable, untick and retick #{@cask}.app. EOS end