mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-23 09:40:48 +00:00
Keep output
This commit is contained in:
parent
5f971b8d4f
commit
02a6899abb
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -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);
|
||||||
|
|
||||||
|
|
2
index.js
2
index.js
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue