(branch, repo)
| 27 | return p; |
| 28 | } |
| 29 | function canonicalBundlePath(branch, repo) { |
| 30 | fs.mkdirSync("/tmp/gh-aw", { recursive: true }); |
| 31 | const p = repo ? getBundlePathForBranchInRepo(branch, repo) : getBundlePathForBranch(branch); |
| 32 | createdTransportPaths.add(p); |
| 33 | return p; |
| 34 | } |
| 35 | function cleanupCanonicalTransports() { |
| 36 | for (const p of createdTransportPaths) { |
| 37 | try { |
no test coverage detected