From 99c7c405e3c430f26c121d4ebe829f57f58d87cd Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Sat, 13 Feb 2021 17:35:09 +0000 Subject: [PATCH] Improve log message for repo/key mappings --- dist/index.js | 2 +- index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 613d5e0..a36baa4 100644 --- a/dist/index.js +++ b/dist/index.js @@ -199,7 +199,7 @@ try { fs.appendFileSync(`${homeSsh}/config`, sshConfig); - console.log(`Added deploy-key mapping: Use key ${sha256} for GitHub repository ${ownerAndRepo}`); + console.log(`Added deploy-key mapping: Use key "${key}" for GitHub repository ${ownerAndRepo}`); }); } catch (error) { diff --git a/index.js b/index.js index f84e2c4..23d818a 100644 --- a/index.js +++ b/index.js @@ -82,7 +82,7 @@ try { fs.appendFileSync(`${homeSsh}/config`, sshConfig); - console.log(`Added deploy-key mapping: Use key ${sha256} for GitHub repository ${ownerAndRepo}`); + console.log(`Added deploy-key mapping: Use key "${key}" for GitHub repository ${ownerAndRepo}`); }); } catch (error) {