1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00

fix message

This commit is contained in:
shimataro 2022-12-20 07:15:53 +09:00
parent 7cd710266f
commit c3f370a726
No known key found for this signature in database
GPG key ID: BE92C05736911A9D
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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.`);
}
/**