From 56344c5d9072101d49a2fd541555566348ffac11 Mon Sep 17 00:00:00 2001 From: John Southworth Date: Tue, 11 Oct 2011 10:53:32 -0500 Subject: Fix ambiguous error text so that it doesn't show node.def, generate the completions using compgen -d --- etc/bash_completion.d/vyatta-op | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index 2f50214..5bcc460 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -281,7 +281,7 @@ _vyatta_op_invalid_completion () # output proper error message based on the above expansion if [[ "${arg[1]}" == "ambiguous" ]]; then echo -ne "\n\n Ambiguous command: ${args[@]} [$arg]\n" - local -a cmds=( "$tpath/$arg"* ) + local -a cmds=( $(compgen -d $tpath/$arg) ) _vyatta_op_node_path=$tpath local comps=$(_vyatta_op_help $arg ${cmds[@]##*/}) echo -ne "$comps" | sed -e 's/^P/ P/' -- cgit v1.2.3