From 702d07917ee3fbeba831c7a95527e1b71baf08a6 Mon Sep 17 00:00:00 2001 From: Dorian Date: Wed, 9 Nov 2016 15:08:12 +0100 Subject: Update the CaskAlreadyInstalledError with new reinstall command e.g. this changes: ``` To re-install google-chrome, run: brew cask uninstall --force google-chrome && brew cask install google-chrome ``` To: ``` To re-install google-chrome, run: brew cask reinstall google-chrome ```--- Library/Homebrew/cask/lib/hbc/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Homebrew/cask/lib/hbc/exceptions.rb b/Library/Homebrew/cask/lib/hbc/exceptions.rb index c323f6c4c..8a128a52b 100644 --- a/Library/Homebrew/cask/lib/hbc/exceptions.rb +++ b/Library/Homebrew/cask/lib/hbc/exceptions.rb @@ -41,7 +41,7 @@ module Hbc def reinstall_message <<-EOS.undent To re-install #{token}, run: - brew cask uninstall --force #{token} && brew cask install #{token} + brew cask reinstall #{token} EOS end end -- cgit v1.2.3