This commit is contained in:
Armand Tavera 2023-10-18 06:11:55 -03:00 committed by GitHub
commit 37f3b1e973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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