()
| 457 | }) |
| 458 | |
| 459 | function getSandboxEnabledSetting(): boolean { |
| 460 | try { |
| 461 | const settings = getSettings_DEPRECATED() |
| 462 | return settings?.sandbox?.enabled ?? false |
| 463 | } catch (error) { |
| 464 | logForDebugging(`Failed to get settings for sandbox check: ${error}`) |
| 465 | return false |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | function isAutoAllowBashIfSandboxedEnabled(): boolean { |
| 470 | const settings = getSettings_DEPRECATED() |
no test coverage detected