File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1078,15 +1078,16 @@ class Packages {
1078
1078
return this.platform === "darwin" ? "--ws=cocoa" : "";
1079
1079
}
1080
1080
async _extract(file, dest) {
1081
- core.info(`Extracting ${file} to ${dest}`);
1081
+ core.info(`_extract: Extracting ${file} to ${dest}`);
1082
1082
return tc.extractZip(file, dest);
1083
1083
}
1084
1084
async _download(filename) {
1085
1085
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}`);
1087
1087
return tc.downloadTool(`${this.baseUrl}/${filename}`, downloadPath);
1088
1088
}
1089
1089
async _clearDirectory(dirPath) {
1090
+ core.info(`_clearDirectory: Clearing ${dirPath}`);
1090
1091
if (await fs_1.promises
1091
1092
.access(dirPath)
1092
1093
.then(() => true)
You can’t perform that action at this time.
0 commit comments