mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-20 03:02:29 +01:00
Fix bug in cert arguments:
* clean option had an extra single quote. * fingerprint option had a single quote as part of the text so changed outer quotes to double quotes.
This commit is contained in:
parent
06c31ac969
commit
73d3a70ea0
1 changed files with 2 additions and 2 deletions
|
|
@ -120,8 +120,8 @@ _catalog_arguments=(
|
||||||
|
|
||||||
local -a _cert_arguments
|
local -a _cert_arguments
|
||||||
_cert_arguments=(
|
_cert_arguments=(
|
||||||
"clean:'Revoke a host's certificate (if applicable) and remove all files related to that host from puppet cert's storage"
|
"clean:Revoke a host's certificate (if applicable) and remove all files related to that host from puppet cert's storage"
|
||||||
'fingerprint:Print the DIGEST (defaults to the signing algorithm) fingerprint of a host's certificate'
|
"fingerprint:Print the DIGEST (defaults to the signing algorithm) fingerprint of a host's certificate"
|
||||||
'generate:Generate a certificate for a named client'
|
'generate:Generate a certificate for a named client'
|
||||||
'list:List outstanding certificate requests'
|
'list:List outstanding certificate requests'
|
||||||
"print:Print the full-text version of a host's certificate."
|
"print:Print the full-text version of a host's certificate."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue