mirror of
https://github.com/gryf/vboxmanage-bash-completion.git
synced 2025-12-17 11:30:23 +01:00
Fix run and start subcommands for guestcontrol
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user