You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if !certs_path.join(SIGNER_TLS_CERTIFICATE_NAME).try_exists()? {
430
+
returnErr(eyre::eyre!("Signer TLS certificate not found at {}, please provide a valid certificate or create one", certs_path.join(SIGNER_TLS_CERTIFICATE_NAME).display()));
431
+
}
432
+
if !certs_path.join(SIGNER_TLS_KEY_NAME).try_exists()? {
433
+
returnErr(eyre::eyre!("Signer TLS key not found at {}, please provide a valid key or create one", certs_path.join(SIGNER_TLS_KEY_NAME).display()));
0 commit comments