Skip to content

Commit

Permalink
chore: Compiled version missing
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Nov 13, 2024
1 parent 6494293 commit c1bf705
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1078,15 +1078,16 @@ class Packages {
return this.platform === "darwin" ? "--ws=cocoa" : "";
}
async _extract(file, dest) {
core.info(`Extracting ${file} to ${dest}`);
core.info(`_extract: Extracting ${file} to ${dest}`);
return tc.extractZip(file, dest);
}
async _download(filename) {
const downloadPath = path.join(this._getTempDirectory(), filename);
core.info(`Downloading ${this.baseUrl}/${filename} to ${downloadPath}`);
core.info(`_download: Downloading ${this.baseUrl}/${filename} to ${downloadPath}`);
return tc.downloadTool(`${this.baseUrl}/${filename}`, downloadPath);
}
async _clearDirectory(dirPath) {
core.info(`_clearDirectory: Clearing ${dirPath}`);
if (await fs_1.promises
.access(dirPath)
.then(() => true)
Expand Down

0 comments on commit c1bf705

Please # to comment.