Skip to content

Commit

Permalink
isql: Fix failglob failure
Browse files Browse the repository at this point in the history
  • Loading branch information
GArik committed Jun 9, 2014
1 parent 60b8fab commit 9d250f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/isql
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9d250f9

Please sign in to comment.