mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
@@ -87,7 +87,7 @@ function buildWin32Setup(arch, target) {
|
||||
productJson['target'] = target;
|
||||
fs.writeFileSync(productJsonPath, JSON.stringify(productJson, undefined, '\t'));
|
||||
|
||||
const quality = product.quality;
|
||||
const quality = product.quality || 'dev';
|
||||
const definitions = {
|
||||
NameLong: product.nameLong,
|
||||
NameShort: product.nameShort,
|
||||
@@ -115,11 +115,7 @@ function buildWin32Setup(arch, target) {
|
||||
};
|
||||
|
||||
if (quality === 'insider') {
|
||||
const appxPackagePrefix = 'code_insiders';
|
||||
definitions['AppxPackage'] = `${appxPackagePrefix}_explorer_${arch}.appx`;
|
||||
if (arch === 'ia32') {
|
||||
definitions['AppxPackage'] = `${appxPackagePrefix}_explorer_x86.appx`;
|
||||
}
|
||||
definitions['AppxPackage'] = `code_insiders_explorer_${arch === 'ia32' ? 'x86' : arch}.appx`;
|
||||
definitions['AppxPackageFullname'] = `Microsoft.${product.win32RegValueName}_1.0.0.0_neutral__8wekyb3d8bbwe`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user