summaryrefslogtreecommitdiff
path: root/completions/isql
diff options
context:
space:
mode:
Diffstat (limited to 'completions/isql')
-rw-r--r--completions/isql6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/isql b/completions/isql
index 4bd24c41..4258c519 100644
--- a/completions/isql
+++ b/completions/isql
@@ -6,9 +6,9 @@ _isql()
local cur prev words cword
_init_completion || return
- [[ -f $ODBCINI ]] \
- && COMPREPLY=( $(command grep "\[$cur" "$ODBCINI" | tr -d \[\]) )
+ [[ -f $ODBCINI ]] &&
+ COMPREPLY=($(command grep "\[$cur" "$ODBCINI" | tr -d \[\]))
} &&
-complete -F _isql isql
+ complete -F _isql isql
# ex: filetype=sh