1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

Merge 9432d4e5b4a896fb7aa5d2733f166aa5e86b5398 into c7e7e1d884d3bb241ea6448f72a989434c2a35ec

This commit is contained in:
Armand Tavera 2024-05-11 07:35:34 +08:00 committed by GitHub
commit cb42d28971
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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