(...args: string[])
| 138 | ) |
| 139 | |
| 140 | const git = (...args: string[]) => |
| 141 | spawner.spawn(ChildProcess.make("git", args, { cwd: dir })).pipe(Effect.flatMap((handle) => handle.exitCode)) |
| 142 | |
| 143 | if (options?.git) { |
| 144 | yield* git("init") |
no test coverage detected