From 41eafa98f49067b5265523e849f873c3f89c1e37 Mon Sep 17 00:00:00 2001 From: vamsi Date: Thu, 26 Mar 2026 17:49:54 +0530 Subject: [PATCH] fix(cli): properly copy all valid SSL certs and fix log typo --- cli/src/tasks/copy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/tasks/copy.ts b/cli/src/tasks/copy.ts index ce1179e017..90dbbee264 100644 --- a/cli/src/tasks/copy.ts +++ b/cli/src/tasks/copy.ts @@ -254,13 +254,13 @@ async function copySSLCert(sslCertPaths: string[], rootDir: string, targetDir: s `SSL Certificate does not exist at specified path.`, ); - return; + continue; } validCertPaths.push(certAbsFromPath); } const certsDirAbsToPath = join(targetDir, 'certs'); const certsDirRelToDir = relative(rootDir, targetDir); - await runTask(`Copying SSL Certificates from to ${certsDirRelToDir}`, async () => { + await runTask(`Copying SSL Certificates to ${certsDirRelToDir}`, async () => { const promises: Promise[] = []; for (const certPath of validCertPaths) { promises.push(fsCopy(certPath, join(certsDirAbsToPath, basename(certPath))));