(cwd: string, proc: AppProcess.Interface)
| 952 | } |
| 953 | |
| 954 | function run(cwd: string, proc: AppProcess.Interface) { |
| 955 | return (args: string[]) => |
| 956 | execute(cwd, proc)(args).pipe(Effect.catch(() => Effect.succeed({ exitCode: 1, text: "", stderr: "" }))) |
| 957 | } |
| 958 | |
| 959 | function execute(cwd: string, proc: AppProcess.Interface) { |
| 960 | return (args: string[]) => |
no test coverage detected