completions/zsh: fix __brew_casks()

This commit is contained in:
Nanda H Krishna 2021-04-09 22:28:44 +05:30
parent 0747d66461
commit 4e2e41a7f9
No known key found for this signature in database
GPG Key ID: 067E5FCD58ADF3AA

View File

@ -84,7 +84,7 @@ __brew_casks() {
local comp_cachename=brew_casks local comp_cachename=brew_casks
if ! _retrieve_cache $comp_cachename; then if ! _retrieve_cache $comp_cachename; then
list=( $(brew search --cask) ) list=( $(brew casks) )
_store_cache $comp_cachename list _store_cache $comp_cachename list
fi fi