Skip to content

Commit

Permalink
fix(ssh): fix wrong quoting inside compgen -W
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Sep 25, 2023
1 parent 800b103 commit febb3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/ssh
Expand Up @@ -8,7 +8,7 @@ _comp_cmd_ssh__compgen_queries()
key-plain key-sig protocol-version compression sig ciphers macs
kexalgorithms pubkeyacceptedkeytypes hostkeyalgorithms
hostbasedkeytypes hostbasedacceptedkeytypes)
_comp_compgen -c "${cur,,}" -U ret -- -W '"${ret[@]}" help"'
_comp_compgen -c "${cur,,}" -U ret -- -W '"${ret[@]}" help'
}

# @since 2.12
Expand Down

0 comments on commit febb3b3

Please sign in to comment.