Make build pass on x64 before atom.io is ready

This commit is contained in:
Damien Guard 2016-11-10 22:34:51 -08:00
parent 0d0a2ae7b1
commit aaf1c72f5a
No known key found for this signature in database
GPG Key ID: DC14FA2FB1465DB6

View File

@ -22,6 +22,11 @@ module.exports = function (packagedAppPath, codeSign) {
setupIcon: path.join(CONFIG.repositoryRootPath, 'resources', 'app-icons', CONFIG.channel, 'atom.ico')
}
// Remove this once an x64 version is published or atom.io is returning blank instead of 404 for RELEASES-X64
if (process.arch === 'x64') {
options.remoteReleases = null
}
const certPath = path.join(os.tmpdir(), 'win.p12')
const signing = codeSign && process.env.WIN_P12KEY_URL