diff --git a/desktop/doctor/src/index.ts b/desktop/doctor/src/index.ts index 8d4b4d120..d98be88e5 100644 --- a/desktop/doctor/src/index.ts +++ b/desktop/doctor/src/index.ts @@ -122,7 +122,7 @@ export function getHealthchecks(): Healthchecks { }; } return await tryExecuteCommand( - path.join(platformToolsDir, 'adb') + ' version', + `"${path.join(platformToolsDir, 'adb')}" version`, ); } return await tryExecuteCommand('adb version');