Skip to content

Commit

Permalink
Avoid nonsensical log message (#139)
Browse files Browse the repository at this point in the history
This change avoids the

`Comment for (public) key '' does not match GitHub URL pattern. Not treating it as a GitHub deploy key.`

log message that was caused by inappropriate parsing of `ssh-add -L` output and confused a lot of users already.
  • Loading branch information
mpdude committed Oct 19, 2022
1 parent b19b28d commit 0a7dc1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -371,7 +371,7 @@ try {

console.log('Configuring deployment key(s)');

child_process.execFileSync(sshAddCmd, ['-L']).toString().split(/\r?\n/).forEach(function(key) {
child_process.execFileSync(sshAddCmd, ['-L']).toString().trim().split(/\r?\n/).forEach(function(key) {
const parts = key.match(/\bgithub\.com[:/]([_.a-z0-9-]+\/[_.a-z0-9-]+)/i);

if (!parts) {
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -51,7 +51,7 @@ try {

console.log('Configuring deployment key(s)');

child_process.execFileSync(sshAddCmd, ['-L']).toString().split(/\r?\n/).forEach(function(key) {
child_process.execFileSync(sshAddCmd, ['-L']).toString().trim().split(/\r?\n/).forEach(function(key) {
const parts = key.match(/\bgithub\.com[:/]([_.a-z0-9-]+\/[_.a-z0-9-]+)/i);

if (!parts) {
Expand Down

0 comments on commit 0a7dc1c

Please sign in to comment.