mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-27 03:13:17 +00:00
Fix syntax
This commit is contained in:
parent
7fc4d80a06
commit
ef63fdb1df
2 changed files with 6 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -195,6 +195,8 @@ try {
|
||||||
// Load key into agent
|
// Load key into agent
|
||||||
console.log('Load key');
|
console.log('Load key');
|
||||||
//let sshAdd = child_process.execSync(`echo "${token}" | ssh-add "${keyFile}"`, { stdio: 'inherit' });
|
//let sshAdd = child_process.execSync(`echo "${token}" | ssh-add "${keyFile}"`, { stdio: 'inherit' });
|
||||||
|
var sshAdd;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { stdio: 'inherit', env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } });
|
let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { stdio: 'inherit', env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } });
|
||||||
} catch (exception) {
|
} catch (exception) {
|
||||||
|
|
2
index.js
2
index.js
|
@ -78,6 +78,8 @@ try {
|
||||||
// Load key into agent
|
// Load key into agent
|
||||||
console.log('Load key');
|
console.log('Load key');
|
||||||
//let sshAdd = child_process.execSync(`echo "${token}" | ssh-add "${keyFile}"`, { stdio: 'inherit' });
|
//let sshAdd = child_process.execSync(`echo "${token}" | ssh-add "${keyFile}"`, { stdio: 'inherit' });
|
||||||
|
var sshAdd;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { stdio: 'inherit', env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } });
|
let sshAdd = child_process.execSync(`ssh-add ${keyFile}`, { stdio: 'inherit', env: { 'SSH_ASKPASS': `${homeSsh}/askpass` } });
|
||||||
} catch (exception) {
|
} catch (exception) {
|
||||||
|
|
Loading…
Reference in a new issue