(command: string, args: string[], options: ExecutionOptions)
| 349 | } |
| 350 | |
| 351 | export function getSandboxCEWrapperOptions(command: string, args: string[], options: ExecutionOptions): NsJailOptions { |
| 352 | return getCeWrapperOptions('sandbox', command, args, options); |
| 353 | } |
| 354 | |
| 355 | export function getExecuteCEWrapperOptions(command: string, args: string[], options: ExecutionOptions): NsJailOptions { |
| 356 | return getCeWrapperOptions('execute', command, args, options); |
no test coverage detected