We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a358d commit 4650b4fCopy full SHA for 4650b4f
cli/src/tasks/copy.ts
@@ -324,14 +324,6 @@ async function copySSLCert(
324
const validCertPaths: string[] = [];
325
for (const sslCertPath of sslCertPaths) {
326
const certAbsFromPath = join(rootDir, sslCertPath);
327
- if (!/^.+\.(cer)$/.test(certAbsFromPath)) {
328
- logger.warn(
329
- `Cannot copy file from ${c.strong(certAbsFromPath)}\n` +
330
- `The file is not a .cer SSL Certificate file.`,
331
- );
332
-
333
- return;
334
- }
335
if (!(await pathExists(certAbsFromPath))) {
336
logger.warn(
337
`Cannot copy SSL Certificate file from ${c.strong(certAbsFromPath)}\n` +
0 commit comments