diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2025-09-04 11:47:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-04 11:47:44 +0200 |
commit | c9e1782d7a902b24439e2d55f4ae9ccf0c7c82af (patch) | |
tree | 76fb6247d61ce7ccabc9788f14dfe59748c3acd2 /apps/installer/main.sh | |
parent | 300ed47bc48123067cde95b3456dff3accc72b45 (diff) |
Refactor menu command handling for direct execution (#22791)
Diffstat (limited to 'apps/installer/main.sh')
-rw-r--r-- | apps/installer/main.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/installer/main.sh b/apps/installer/main.sh index 3bdd99b225..b1cba33e8a 100644 --- a/apps/installer/main.sh +++ b/apps/installer/main.sh @@ -104,4 +104,4 @@ function handle_menu_command() { } # Run the menu system -menu_run "ACORE DASHBOARD" handle_menu_command "${menu_items[@]}" "$@" +menu_run_with_items "ACORE DASHBOARD" handle_menu_command -- "${menu_items[@]}" -- "$@" |