Fix run and start subcommands for guestcontrol

This commit is contained in:
2023-03-14 19:00:10 +01:00
parent b231c43740
commit 4d6210b599

View File

@@ -1459,7 +1459,7 @@ _VBoxManage() {
items+=(--quiet -q) items+=(--quiet -q)
_get_excluded_items "${items[@]}" _get_excluded_items "${items[@]}"
compreply=( $(compgen -w "$result" -- ${cur}) ) COMPREPLY=( $(compgen -W "$result" -- ${cur}) )
;; ;;
start) start)
@@ -1478,7 +1478,7 @@ _VBoxManage() {
items+=(--quiet -q) items+=(--quiet -q)
_get_excluded_items "${items[@]}" _get_excluded_items "${items[@]}"
compreply=( $(compgen -w "$result" -- ${cur}) ) COMPREPLY=( $(compgen -W "$result" -- ${cur}) )
;; ;;
copyfrom|copyto) copyfrom|copyto)