Skip to content

Commit

Permalink
Merge pull request #4 from s0/console-logs
Browse files Browse the repository at this point in the history
Remove some console logs
  • Loading branch information
s0 authored Oct 20, 2019
2 parents 09f252a + 91d4586 commit 6db3cd9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,6 @@ var writeToProcess = function (command, args, opts) { return new Promise(functio
env = Object.assign({}, process.env, {
SSH_AUTH_SOCK: SSH_AUTH_SOCK
});
console.log(env);
if (!(config.mode === 'ssh')) return [3 /*break*/, 11];
known_hosts = config.knownHostsFile;
// Use well-known known_hosts for certain domains
Expand Down
2 changes: 0 additions & 2 deletions action/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,6 @@ const writeToProcess = (command: string, args: string[], opts: {env: { [id: stri
SSH_AUTH_SOCK
});

console.log(env);

if (config.mode === 'ssh') {
// Copy over the known_hosts file if set
let known_hosts = config.knownHostsFile;
Expand Down

0 comments on commit 6db3cd9

Please sign in to comment.