[engineering] add label to packageTask (#253779)

previously appeared as "(anonymous)" in the logs
This commit is contained in:
Aman Karmani 2025-07-08 00:41:53 -07:00 committed by GitHub
parent 80154acf96
commit bcd950d6be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -213,7 +213,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
const destination = path.join(path.dirname(root), destinationFolderName);
platform = platform || process.platform;
return () => {
const task = () => {
const electron = require('@vscode/gulp-electron');
const json = require('gulp-json-editor');
@ -422,6 +422,8 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
return result.pipe(vfs.dest(destination));
};
task.taskName = `package-${platform}-${arch}`;
return task;
}
function patchWin32DependenciesTask(destinationFolderName) {