npm run build (JBR)

This commit is contained in:
Gregory Mitchell 2024-06-18 23:39:23 -05:00
parent 4f206bae88
commit ab5c653696
No known key found for this signature in database
GPG key ID: 771A6C995A086B84

3
dist/setup/index.js vendored
View file

@ -124180,8 +124180,7 @@ class JetBrainsDistribution extends base_installer_1.JavaBase {
core.info(`Downloading Java ${javaRelease.version} (${this.distribution}) from ${javaRelease.url} ...`); core.info(`Downloading Java ${javaRelease.version} (${this.distribution}) from ${javaRelease.url} ...`);
const javaArchivePath = yield tc.downloadTool(javaRelease.url); const javaArchivePath = yield tc.downloadTool(javaRelease.url);
core.info(`Extracting Java archive...`); core.info(`Extracting Java archive...`);
const extension = (0, util_1.getDownloadArchiveExtension)(); const extractedJavaPath = yield (0, util_1.extractJdkFile)(javaArchivePath);
const extractedJavaPath = yield (0, util_1.extractJdkFile)(javaArchivePath, extension);
const archiveName = fs_1.default.readdirSync(extractedJavaPath)[0]; const archiveName = fs_1.default.readdirSync(extractedJavaPath)[0];
const archivePath = path_1.default.join(extractedJavaPath, archiveName); const archivePath = path_1.default.join(extractedJavaPath, archiveName);
const version = this.getToolcacheVersionName(javaRelease.version); const version = this.getToolcacheVersionName(javaRelease.version);