Merge pull request #8806 from kikitux/autocomp

add box prune to contrib bash completion
This commit is contained in:
Brian Cain 2017-07-21 15:48:24 -07:00 committed by GitHub
commit 62fd6de914
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ _vagrant() {
return 0
;;
"box")
box_commands="add help list outdated remove repackage update"
box_commands="add help list outdated prune remove repackage update"
COMPREPLY=($(compgen -W "${box_commands}" -- ${cur}))
return 0
;;