diff --git a/src/index.ts b/src/index.ts index e2209d2..1d87483 100644 --- a/src/index.ts +++ b/src/index.ts @@ -58,6 +58,7 @@ export default async function devcert(appName: string, options: Options = {}) { let appCertPath = configPath(`${ appName }.crt`); if (!existsSync(rootKeyPath)) { + debug('devcert root CA not installed yet, must be first run; installing root CA ...'); await installCertificateAuthority(options.installCertutil); } @@ -127,7 +128,8 @@ async function addCertificateToTrustStores(installCertutil: boolean): Promise