Skip to content

Commit 6e41b87

Browse files
author
Dave Grantham
committed
fix
Signed-off-by: Dave Grantham <dwg@linuxprogrammer.org>
1 parent 3163aa9 commit 6e41b87

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

dist/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2934,12 +2934,12 @@ try {
29342934

29352935
console.log(`Added deploy-key mapping: Use identity '${homeSsh}/key-${sha256}' for GitHub repository ${ownerAndRepo}`);
29362936

2937-
console.log(`exec: ${sshCmd} git@github.com`);
2938-
const ssh_github_output_1 = child_process.execFileSync(sshCmd, [`git@github.com`], { stdio: 'inherit' }).toString();
2939-
console.log(`ssh to git@github.com:\n${ssh_github_output_1}`);
2937+
//console.log(`exec: ${sshCmd} git@github.com`);
2938+
//const ssh_github_output_1 = child_process.execFileSync(sshCmd, [`git@github.com`], { stdio: 'inherit' }).toString();
2939+
//console.log(`ssh to git@github.com:\n${ssh_github_output_1}`);
29402940

29412941
console.log(`exec: ${sshCmd} git@key-${sha256}.github.com`);
2942-
const ssh_github_output_2 = child_process.execFileSync(sshCmd, [`git@key-${sha256}.github.com`], { stdio: 'inherit' }).toString();
2942+
const ssh_github_output_2 = child_process.execFileSync(sshCmd, [`git@key-${sha256}.github.com`]).toString();
29432943
console.log(`ssh to git@key-${sha256}.github.com:\n${ssh_github_output_2}`);
29442944
});
29452945

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ try {
9797

9898
console.log(`Added deploy-key mapping: Use identity '${homeSsh}/key-${sha256}' for GitHub repository ${ownerAndRepo}`);
9999

100-
console.log(`exec: ${sshCmd} git@github.com`);
101-
const ssh_github_output_1 = child_process.execFileSync(sshCmd, [`git@github.com`], { stdio: 'inherit' }).toString();
102-
console.log(`ssh to git@github.com:\n${ssh_github_output_1}`);
100+
//console.log(`exec: ${sshCmd} git@github.com`);
101+
//const ssh_github_output_1 = child_process.execFileSync(sshCmd, [`git@github.com`], { stdio: 'inherit' }).toString();
102+
//console.log(`ssh to git@github.com:\n${ssh_github_output_1}`);
103103

104104
console.log(`exec: ${sshCmd} git@key-${sha256}.github.com`);
105-
const ssh_github_output_2 = child_process.execFileSync(sshCmd, [`git@key-${sha256}.github.com`], { stdio: 'inherit' }).toString();
105+
const ssh_github_output_2 = child_process.execFileSync(sshCmd, [`git@key-${sha256}.github.com`]).toString();
106106
console.log(`ssh to git@key-${sha256}.github.com:\n${ssh_github_output_2}`);
107107
});
108108

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cryptid-action-ssh-agent",
33
"repository": "git@github.com:cryptidtech/ssh-agent.git",
44
"description": "GitHub Action to set up ssh-agent with a private SSH key",
5-
"version": "0.1.12",
5+
"version": "0.1.13",
66
"main": "index.js",
77
"author": "webfactory GmbH <info@webfactory.de>",
88
"license": "MIT",

0 commit comments

Comments
 (0)