From 4d6210b5993b560fe75b1b13d509235b75049f65 Mon Sep 17 00:00:00 2001 From: Roman Dobosz Date: Tue, 14 Mar 2023 19:00:10 +0100 Subject: [PATCH] Fix run and start subcommands for guestcontrol --- VBoxManage | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VBoxManage b/VBoxManage index c77732f..ac482e5 100644 --- a/VBoxManage +++ b/VBoxManage @@ -1459,7 +1459,7 @@ _VBoxManage() { items+=(--quiet -q) _get_excluded_items "${items[@]}" - compreply=( $(compgen -w "$result" -- ${cur}) ) + COMPREPLY=( $(compgen -W "$result" -- ${cur}) ) ;; start) @@ -1478,7 +1478,7 @@ _VBoxManage() { items+=(--quiet -q) _get_excluded_items "${items[@]}" - compreply=( $(compgen -w "$result" -- ${cur}) ) + COMPREPLY=( $(compgen -W "$result" -- ${cur}) ) ;; copyfrom|copyto)