diff --git a/red/runtime/storage/localfilesystem/projects/ssh/index.js b/red/runtime/storage/localfilesystem/projects/ssh/index.js index e13188987..4188b07ce 100644 --- a/red/runtime/storage/localfilesystem/projects/ssh/index.js +++ b/red/runtime/storage/localfilesystem/projects/ssh/index.js @@ -118,7 +118,7 @@ function generateSSHKey(username, options) { var password = options.password || ""; var size = options.size || 2048; var sshKeyFileBasename = username + '_' + name; - var privateKeyFilePath = fs.normalize(fspath.join(sshkeyDir, sshKeyFileBasename)); + var privateKeyFilePath = fspath.normalize(fspath.join(sshkeyDir, sshKeyFileBasename)); return generateSSHKeyPair(name, privateKeyFilePath, comment, password, size) } })