From 4016e746cd558a131a996dc9091e44bcc2ce8548 Mon Sep 17 00:00:00 2001 From: Lewis Sparlin Date: Wed, 7 Oct 2020 11:21:34 -0500 Subject: [PATCH] Fix _brew_upgrade completion function I found an error that was breaking my `brew upgrade ...` zsh completion --- completions/zsh/_brew | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/zsh/_brew b/completions/zsh/_brew index 140ecf5176..e0f635b248 100644 --- a/completions/zsh/_brew +++ b/completions/zsh/_brew @@ -818,7 +818,7 @@ _brew_update_test() { # install-options is copied from brew install _brew_upgrade() { _arguments \ - '--cask[upgrade installed Casks with newer versions]' + '--cask[upgrade installed Casks with newer versions]' \ '--cleanup[remove previously installed formula version(s)]' \ '--fetch-HEAD[detect if the HEAD installation of the formula is outdated]' \ - normal-install \