return undefined;
}
const [bubblewrapPath, socatPath] = await Promise.all([
findCommand('bwrap'),
findCommand('socat'),
]);
const bubblewrapProbe = bubblewrapPath ? await probeBubblewrap(bubblewrapPath) : { usable: false };
const dependencyInstallCommand = !bubblewrapPath || !socatPath
? await SandboxHelperService._findDependencyInstallCommand(findCommand, resolveInstallEnvironment)