diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 09:27:51 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-06 09:27:51 -0500 |
commit | 03d49ec76e6c4460627b8ebcbd065b0dfac551ae (patch) | |
tree | 749058e5953cef97aceccad840a7f120af808979 | |
parent | bc6e5e6384b9381dfe76c3f89161073f26ea432f (diff) | |
download | stasis-03d49ec76e6c4460627b8ebcbd065b0dfac551ae.tar.gz |
Add missing '=' suffix on --client-cert-key-path argument
-rw-r--r-- | src/artifactory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/artifactory.c b/src/artifactory.c index 0c73b69..972f27b 100644 --- a/src/artifactory.c +++ b/src/artifactory.c @@ -177,8 +177,8 @@ int jfrog_cli(struct JFRT_Auth *auth, char *args) { "--access-token=", "--ssh-key-path=", "--ssh-passphrase=", - "--client-cert-key-path", - "--client-cert-path", + "--client-cert-key-path=", + "--client-cert-path=", "--password=", NULL, }; |