(base: string)
| 58 | // --all picks up refs/seed/stash; HEAD needs it explicit. |
| 59 | const extra = hasStash ? ['refs/seed/stash'] : [] |
| 60 | const mkBundle = (base: string) => |
| 61 | execFileNoThrowWithCwd( |
| 62 | gitExe(), |
| 63 | ['bundle', 'create', bundlePath, base, ...extra], |
| 64 | { cwd: gitRoot, abortSignal: signal }, |
| 65 | ) |
| 66 | |
| 67 | const allResult = await mkBundle('--all') |
| 68 | if (allResult.code !== 0) { |
no test coverage detected