Change re-install command to use &&.

This commit is contained in:
Markus Reiter 2016-10-02 19:53:34 +02:00
parent e4da2dfb9f
commit 0f7d1b137f

View File

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