mirror of
https://github.com/webfactory/ssh-agent.git
synced 2026-04-08 19:09:08 +08:00
Keep output
This commit is contained in:
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);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user