Unverified Commit 5b11e70a authored by Erin Schlarb's avatar Erin Schlarb Committed by GitHub

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

parent 18c837b1
...@@ -11,7 +11,7 @@ function omz { ...@@ -11,7 +11,7 @@ function omz {
# Subcommand functions start with _ so that they don't # Subcommand functions start with _ so that they don't
# appear as completion entries when looking for `omz` # appear as completion entries when looking for `omz`
(( $+functions[_omz::$command] )) || { (( ${+functions[_omz::$command]} )) || {
_omz::help _omz::help
return 1 return 1
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment