fix path arg

This commit is contained in:
Dragan Filipovic 2023-01-02 01:12:37 +01:00
parent 5dfe8ebb5a
commit 11a1bc7795
3 changed files with 9 additions and 6 deletions

View file

@ -10,7 +10,7 @@ const addSshKey = (content, filename) => {
writeToFile({ dir, filename: 'known_hosts', content: '' });
writeToFile({ dir, filename, content, isRequired: true });
console.log('✅ Ssh key added to `.ssh` dir ', dir);
console.log('✅ [SSH] key added to `.ssh` dir ', dir);
return filePath;
};