add prune to contrib bash completion

add prune command to completion.sh
This commit is contained in:
Alvaro Miranda Aguilera 2017-07-20 23:08:58 +02:00
parent 1fe2c81752
commit 4c3b202c09
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
;;