From f66f558960c1e439fab06c5c51810710fc9acd68 Mon Sep 17 00:00:00 2001 From: Dave Wasmer Date: Thu, 27 Apr 2017 16:12:38 -0600 Subject: [PATCH] fix: silence openssl output --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 38af70f..ee6c16c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -260,6 +260,7 @@ function lookupOrInstallCertutil(installCertutil: boolean): boolean | string { function openssl(cmd: string) { return execSync(`openssl ${ cmd }`, { + stdio: 'ignore', env: Object.assign({ RANDFILE: path.join(configPath('.rnd')) }, process.env)