Skip to content

Commit 6db3cd9

Browse files
authored
Merge pull request #4 from s0/console-logs
Remove some console logs
2 parents 09f252a + 91d4586 commit 6db3cd9

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

action/dist/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,6 @@ var writeToProcess = function (command, args, opts) { return new Promise(functio
708708
env = Object.assign({}, process.env, {
709709
SSH_AUTH_SOCK: SSH_AUTH_SOCK
710710
});
711-
console.log(env);
712711
if (!(config.mode === 'ssh')) return [3 /*break*/, 11];
713712
known_hosts = config.knownHostsFile;
714713
// Use well-known known_hosts for certain domains

action/src/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,6 @@ const writeToProcess = (command: string, args: string[], opts: {env: { [id: stri
205205
SSH_AUTH_SOCK
206206
});
207207

208-
console.log(env);
209-
210208
if (config.mode === 'ssh') {
211209
// Copy over the known_hosts file if set
212210
let known_hosts = config.knownHostsFile;

0 commit comments

Comments
 (0)