diff --git a/dist/index.js b/dist/index.js index deb3498..2425967 100644 --- a/dist/index.js +++ b/dist/index.js @@ -198,7 +198,7 @@ try { var sshAdd; try { - let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { stdio: 'inherit', env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } }); + let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } }); } catch (exception) { console.log(sshAdd); console.log(exception); diff --git a/index.js b/index.js index 8bbe2e8..4fae763 100644 --- a/index.js +++ b/index.js @@ -81,7 +81,7 @@ try { var sshAdd; try { - let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { stdio: 'inherit', env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } }); + let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } }); } catch (exception) { console.log(sshAdd); console.log(exception);