1
0
mirror of https://github.com/desktop/desktop synced 2024-06-30 22:54:41 +00:00

Naive fix

This commit is contained in:
Markus Olsson 2024-06-10 22:05:50 +02:00
parent 600125f2ce
commit c9748f0fd8

View File

@ -254,4 +254,6 @@ export function getSSHWrapperPath(): string {
return Path.resolve(__dirname, 'desktop-trampoline', 'ssh-wrapper')
}
const escapedCredentialHelperPath = () =>
getDesktopCredentialHelperTrampolinePath().replaceAll(' ', '\\ ')
getDesktopCredentialHelperTrampolinePath()
.replaceAll('\\', '\\\\')
.replaceAll(' ', '\\ ')