fix(cli): execute as expected if `ksh_arrays` is set (#11629)

master
Erin Schlarb 3 years ago committed by GitHub
parent 18c837b136
commit 5b11e70a96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/cli.zsh

@ -11,7 +11,7 @@ function omz {
# Subcommand functions start with _ so that they don't
# appear as completion entries when looking for `omz`
(( $+functions[_omz::$command] )) || {
(( ${+functions[_omz::$command]} )) || {
_omz::help
return 1
}

Loading…
Cancel
Save