From 507b4aa0bd58b4ac984df31ac1349d1127ec2c1a Mon Sep 17 00:00:00 2001 From: Roman Dobosz Date: Mon, 13 Mar 2023 17:31:02 +0100 Subject: [PATCH] Updated mediumio command --- VBoxManage | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/VBoxManage b/VBoxManage index 2c6e694..e1f2b85 100644 --- a/VBoxManage +++ b/VBoxManage @@ -1868,12 +1868,16 @@ _VBoxManage() { --output" -- ${cur}) ) ;; stream) - COMPREPLY=( $(compgen -W "--forma --variant - --output" -- ${cur}) ) + COMPREPLY=( $(compgen -W "--format --variant + --output" -- ${cur}) ) ;; + --password-file) + COMPREPLY=( $(compgen -f -- ${cur}) ) + ;; *) COMPREPLY=( $(compgen -W "--password-file cat formatfat stream" -- ${cur}) ) + ;; esac fi ;;