Remove stdio: 'inherit'

This commit is contained in:
Matthias Pigulla
2021-02-28 16:07:26 +00:00
parent ef63fdb1df
commit 9406a51fa5
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@@ -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);

View File

@@ -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);