From c3f370a7266553e238a66da61221315400222dc3 Mon Sep 17 00:00:00 2001 From: shimataro Date: Tue, 20 Dec 2022 07:15:53 +0900 Subject: [PATCH] fix message --- lib/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index da4e0a9..907b545 100644 --- a/lib/index.js +++ b/lib/index.js @@ -2820,7 +2820,7 @@ function setup() { function cleanup() { // remove ".ssh" directory const sshDirName = removeSshDirectory(); - console.log(`SSH keys in ${sshDirName} has been removed successfully.`); + console.log(`SSH key in ${sshDirName} has been removed successfully.`); } /** * create ".ssh" directory diff --git a/src/main.ts b/src/main.ts index 962c239..ee40e68 100644 --- a/src/main.ts +++ b/src/main.ts @@ -114,7 +114,7 @@ function cleanup(): void { // remove ".ssh" directory const sshDirName = removeSshDirectory(); - console.log(`SSH keys in ${sshDirName} has been removed successfully.`); + console.log(`SSH key in ${sshDirName} has been removed successfully.`); } /**