(command: string, args: string[], options: ExecutionOptions)
| 353 | } |
| 354 | |
| 355 | export function getExecuteCEWrapperOptions(command: string, args: string[], options: ExecutionOptions): NsJailOptions { |
| 356 | return getCeWrapperOptions('execute', command, args, options); |
| 357 | } |
| 358 | |
| 359 | export function hasNsjailPermissionsIssue(result: UnprocessedExecResult): boolean { |
| 360 | return result.stderr.includes(c_nsjail_permissions_error) || (result.stderr === '' && result.code === 255); |
no test coverage detected