2
0

Fix index.js style

This commit is contained in:
Sergio Padrino
2021-08-16 11:50:53 +02:00
parent ac5ec3b3d2
commit 158101ca4d

View File

@@ -16,18 +16,11 @@ function getDesktopTrampolineFilename() {
}
function getSSHWrapperPath() {
return Path.join(
__dirname,
'build',
'Release',
getSSHWrapperFilename()
)
return Path.join(__dirname, 'build', 'Release', getSSHWrapperFilename())
}
function getSSHWrapperFilename() {
return process.platform === 'win32'
? 'ssh-wrapper.exe'
: 'ssh-wrapper'
return process.platform === 'win32' ? 'ssh-wrapper.exe' : 'ssh-wrapper'
}
module.exports = {