From 9432d4e5b4a896fb7aa5d2733f166aa5e86b5398 Mon Sep 17 00:00:00 2001 From: Armaxxx Date: Tue, 5 Jan 2021 13:31:48 -0600 Subject: [PATCH] Added brew cask reinstall to the posibilities --- thefuck/rules/brew_cask_dependency.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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