mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
fix(cli): execute as expected if ksh_arrays is set (#11629)
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user