From fac49b225d3dedc4b17b61a61d06bbfc679f7a22 Mon Sep 17 00:00:00 2001 From: Daisuke Taniwaki Date: Tue, 27 Nov 2018 16:02:37 +0900 Subject: [PATCH] Fix too many underscore for __custom_func --- bash_completions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash_completions.go b/bash_completions.go index 63274d96..30e74271 100644 --- a/bash_completions.go +++ b/bash_completions.go @@ -134,7 +134,7 @@ __%[1]s_handle_reply() __%[1]s_custom_func else # otherwise fall back to unqualified for compatibility - declare -F ___custom_func >/dev/null && __custom_func + declare -F __custom_func >/dev/null && __custom_func fi fi