mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 10:28:00 +00:00
homebrew: Simplify array assignment
No need for nesting array assignment only to flatten it later.
This commit is contained in:
parent
54dff31b63
commit
11184084bc
@ -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}"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user