diff --git a/thefuck/rules/brew_cask_dependency.py b/thefuck/rules/brew_cask_dependency.py index 8a0ad201..9626ec8c 100644 --- a/thefuck/rules/brew_cask_dependency.py +++ b/thefuck/rules/brew_cask_dependency.py @@ -6,7 +6,8 @@ from thefuck.specific.brew import brew_available @for_app('brew') def match(command): return (u'install' in command.script_parts - and u'brew cask install' in command.output) + and u'brew cask install' in command.output + and u'brew cask reinstall' in command.output) @eager