From c2d396d68ff10c4c9da625f03c5c1058a5b8ca06 Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Fri, 2 Dec 2022 12:31:53 -0800 Subject: [PATCH] Fix bash completion install path --- helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.go b/helpers.go index 47584a5..f0f69ae 100644 --- a/helpers.go +++ b/helpers.go @@ -98,7 +98,7 @@ func installCompletionCmd(hc interp.HandlerContext, cmd string, args []string) e var prefix string switch shell { case "bash": - prefix = "/usr/share/bash-completion/completion" + prefix = "/usr/share/bash-completion/completions" case "zsh": prefix = "/usr/share/zsh/site-functions" name = "_" + name