Turn RELEASES file support back on for Windows x86 builds

This commit is contained in:
David Wilson
2018-09-14 23:02:20 -07:00
parent 0eb040a382
commit e6507c59cb

View File

@@ -17,7 +17,7 @@ module.exports = (packagedAppPath) => {
outputDirectory: CONFIG.buildOutputPath,
noMsi: true,
noDelta: CONFIG.channel === 'nightly', // Delta packages are broken for nightly versions past nightly9 due to Squirrel/NuGet limitations
remoteReleases: (!(CONFIG.channel === 'nightly' && process.arch === 'ia32')) ? `https://atom.io/api/updates${archSuffix}?version=${CONFIG.computedAppVersion}` : undefined,
remoteReleases: `https://atom.io/api/updates${archSuffix}?version=${CONFIG.computedAppVersion}`,
setupExe: `AtomSetup${process.arch === 'x64' ? '-x64' : ''}.exe`,
setupIcon: path.join(CONFIG.repositoryRootPath, 'resources', 'app-icons', CONFIG.channel, 'atom.ico')
}