Skip to content

Commit c1bf705

Browse files
committed
chore: Compiled version missing
1 parent 6494293 commit c1bf705

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dist/main/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,15 +1078,16 @@ class Packages {
10781078
return this.platform === "darwin" ? "--ws=cocoa" : "";
10791079
}
10801080
async _extract(file, dest) {
1081-
core.info(`Extracting ${file} to ${dest}`);
1081+
core.info(`_extract: Extracting ${file} to ${dest}`);
10821082
return tc.extractZip(file, dest);
10831083
}
10841084
async _download(filename) {
10851085
const downloadPath = path.join(this._getTempDirectory(), filename);
1086-
core.info(`Downloading ${this.baseUrl}/${filename} to ${downloadPath}`);
1086+
core.info(`_download: Downloading ${this.baseUrl}/${filename} to ${downloadPath}`);
10871087
return tc.downloadTool(`${this.baseUrl}/${filename}`, downloadPath);
10881088
}
10891089
async _clearDirectory(dirPath) {
1090+
core.info(`_clearDirectory: Clearing ${dirPath}`);
10901091
if (await fs_1.promises
10911092
.access(dirPath)
10921093
.then(() => true)

0 commit comments

Comments
 (0)