()
| 51 | } |
| 52 | |
| 53 | export function findUvInPath(): string | null { |
| 54 | return findUvOnBuildImage() ?? which.sync('uv', { nothrow: true }); |
| 55 | } |
| 56 | |
| 57 | export function getUvCacheDir(workPath: string): string { |
| 58 | return join(workPath, ...UV_CACHE_DIR_SUBPATH); |
no test coverage detected