1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-18 20:11:17 +00:00

Added brew cask reinstall to the posibilities

This commit is contained in:
Armaxxx 2021-01-05 13:31:48 -06:00
parent 40dd65963d
commit 9432d4e5b4

View File

@ -6,7 +6,8 @@ from thefuck.specific.brew import brew_available
@for_app('brew') @for_app('brew')
def match(command): def match(command):
return (u'install' in command.script_parts 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 @eager