(command: string, args: string[], options: ExecutionOptions)
| 399 | } |
| 400 | |
| 401 | function executeCEWrapper(command: string, args: string[], options: ExecutionOptions) { |
| 402 | const nsOpts = getExecuteCEWrapperOptions(command, args, options); |
| 403 | return executeDirect(execProps<string>('cewrapper'), nsOpts.args, nsOpts.options, nsOpts.filenameTransform); |
| 404 | } |
| 405 | |
| 406 | function withFirejailTimeout(args: string[], options?: ExecutionOptions) { |
| 407 | if (options?.timeoutMs) { |
nothing calls this directly
no test coverage detected