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
```
This commit is contained in:
Dorian 2016-11-09 15:08:12 +01:00 committed by GitHub
parent c091882246
commit 702d07917e

View File

@ -41,7 +41,7 @@ module Hbc
def reinstall_message def reinstall_message
<<-EOS.undent <<-EOS.undent
To re-install #{token}, run: To re-install #{token}, run:
brew cask uninstall --force #{token} && brew cask install #{token} brew cask reinstall #{token}
EOS EOS
end end
end end