Keep output

This commit is contained in:
Matthias Pigulla 2021-03-01 10:50:07 +00:00
parent 5f971b8d4f
commit 02a6899abb
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -184,7 +184,7 @@ try {
let output = ''; let output = '';
try { try {
console.log(`Set passphrase on ${keyFile}`); 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) { } catch (exception) {
fs.unlinkSync(keyFile); fs.unlinkSync(keyFile);

View file

@ -67,7 +67,7 @@ try {
let output = ''; let output = '';
try { try {
console.log(`Set passphrase on ${keyFile}`); 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) { } catch (exception) {
fs.unlinkSync(keyFile); fs.unlinkSync(keyFile);