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 ;;