From 0f7d1b137f55264366c772105e5026253906d896 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Sun, 2 Oct 2016 19:53:34 +0200 Subject: [PATCH] Change re-install command to use `&&`. --- Library/Homebrew/cask/lib/hbc/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cask/lib/hbc/exceptions.rb b/Library/Homebrew/cask/lib/hbc/exceptions.rb index 0977ac5c92..8c9481eec7 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 uninstall --force #{token} && brew cask install #{token} EOS end end