summaryrefslogtreecommitdiff
path: root/completions/ssh-add
diff options
context:
space:
mode:
Diffstat (limited to 'completions/ssh-add')
-rw-r--r--completions/ssh-add6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/ssh-add b/completions/ssh-add
index f35c7d00..d8f74926 100644
--- a/completions/ssh-add
+++ b/completions/ssh-add
@@ -7,7 +7,7 @@ _ssh_add()
case $prev in
-*E)
- COMPREPLY=( $(compgen -W 'md5 sha256' -- "$cur") )
+ COMPREPLY=($(compgen -W 'md5 sha256' -- "$cur"))
return
;;
-*t)
@@ -24,12 +24,12 @@ _ssh_add()
esac
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1" "-\?")' -- "$cur") )
+ COMPREPLY=($(compgen -W '$(_parse_help "$1" "-\?")' -- "$cur"))
return
fi
_filedir
} &&
-complete -F _ssh_add ssh-add
+ complete -F _ssh_add ssh-add
# ex: filetype=sh