From 4c3b202c0918ac5d2d6f3fd0283e8366a74b98e2 Mon Sep 17 00:00:00 2001 From: Alvaro Miranda Aguilera Date: Thu, 20 Jul 2017 23:08:58 +0200 Subject: [PATCH] add prune to contrib bash completion add prune command to completion.sh --- contrib/bash/completion.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bash/completion.sh b/contrib/bash/completion.sh index 5862463db..c25f31aaa 100644 --- a/contrib/bash/completion.sh +++ b/contrib/bash/completion.sh @@ -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 ;;