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