diff --git a/dist/index.js b/dist/index.js index aac8f20..4fbfee6 100644 --- a/dist/index.js +++ b/dist/index.js @@ -184,7 +184,7 @@ try { let output = ''; try { console.log(`Set passphrase on ${keyFile}`); - output = child_process.execFileSync('ssh-keygen', ['-p', '-f', keyFile, '-N', token], { stdio: 'inherit' }); + output = child_process.execFileSync('ssh-keygen', ['-p', '-f', keyFile, '-N', token]); } catch (exception) { fs.unlinkSync(keyFile); diff --git a/index.js b/index.js index 06d7a10..a08eb47 100644 --- a/index.js +++ b/index.js @@ -67,7 +67,7 @@ try { let output = ''; try { console.log(`Set passphrase on ${keyFile}`); - output = child_process.execFileSync('ssh-keygen', ['-p', '-f', keyFile, '-N', token], { stdio: 'inherit' }); + output = child_process.execFileSync('ssh-keygen', ['-p', '-f', keyFile, '-N', token]); } catch (exception) { fs.unlinkSync(keyFile);