(value: string)
| 526 | } |
| 527 | |
| 528 | function shellPathForScript(value: string): string { |
| 529 | return /^[A-Za-z0-9_./-]+$/.test(value) ? value : shellQuote(value); |
| 530 | } |
| 531 | |
| 532 | function buildGuestWorkspacePrelude(settings: SandboxSettings): string { |
| 533 | if (!settings.guestWorkdir || !settings.syncHostWorkspace) { |
no test coverage detected