[Bash-completion-commits] [bash-completion] 02/02: isql: Fix failglob failure

Igor Murzov garik-guest at moszumanska.debian.org
Mon Jun 9 22:48:16 UTC 2014


This is an automated email from the git hooks/post-receive script.

garik-guest pushed a commit to branch master
in repository bash-completion.

commit 9d250f9b53a58c70c7a388e5d2272d8a384d6eb1
Author: Igor Murzov <e-mail at date.by>
Date:   Tue Jun 10 02:35:31 2014 +0400

    isql: Fix failglob failure
---
 completions/isql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/completions/isql b/completions/isql
index 43cd6dd..9ec9f16 100644
--- a/completions/isql
+++ b/completions/isql
@@ -7,7 +7,7 @@ _isql()
     _init_completion || return
 
     [[ -f $ODBCINI ]] \
-        && COMPREPLY=( $( command grep \\["$cur" "$ODBCINI" | tr -d \\[\\] ) )
+        && COMPREPLY=( $( command grep "\[$cur" "$ODBCINI" | tr -d \[\] ) )
 } &&
 complete -F _isql isql
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/bash-completion/bash-completion.git



More information about the Bash-completion-commits mailing list