244
// unsandbox fallback for commands with statically-detected blocked domains.
245
if (!requestUnsandboxedExecution && !retryWithAllowNetworkRequests && allowUnsandboxedCommands && blockedDomainResult.blockedDomains.length > 0) {
247
>
command: this._wrapUnsandboxedCommand(command, shell),
248
>
isSandboxWrapped: false,
249
>
blockedDomains: blockedDomainResult.blockedDomains,
250
>
deniedDomains: blockedDomainResult.deniedDomains,
251
>
requiresUnsandboxConfirmation: true,
252
>
};
253
>
}
254
255
// If requestUnsandboxedExecution is true, need to ensure env variables set during sandbox still apply.