(dest)
| 4450 | } |
| 4451 | exports.findFromManifest = findFromManifest; |
| 4452 | function _createExtractFolder(dest) { |
| 4453 | return __awaiter(this, void 0, void 0, function* () { |
| 4454 | if (!dest) { |
| 4455 | // create a temp dir |
| 4456 | dest = path.join(_getTempDirectory(), v4_1.default()); |
| 4457 | } |
| 4458 | yield io.mkdirP(dest); |
| 4459 | return dest; |
| 4460 | }); |
| 4461 | } |
| 4462 | function _createToolPath(tool, version, arch) { |
| 4463 | return __awaiter(this, void 0, void 0, function* () { |
| 4464 | const folderPath = path.join(_getCacheDirectory(), tool, semver.clean(version) || version, arch || ''); |
no test coverage detected
searching dependent graphs…