homebrew: Simplify array assignment

No need for nesting array assignment only to flatten it later.
This commit is contained in:
Indrajit Raychaudhuri 2018-12-14 15:34:42 -06:00 committed by GitHub
parent 54dff31b63
commit 11184084bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,12 +45,11 @@ alias casks='hb_deprecated brew cask search'
alias caskx='brew cask uninstall'
function hb_deprecated {
local cmd="${argv[3]}"
local cmd_args=( ${(@)argv:4} )
local cmd="${@[3]}"
local cmd_args="${@:4}"
printf "'brew cask %s' has been deprecated, " "${cmd}"
printf "using 'brew %s' instead\n" "${cmd}"
cmd_args=( ${(@)argv:4} )
command brew "${cmd}" ${(@)cmd_args}
command brew "${cmd}" "${=cmd_args}"
}