Manually set title when running electron-winstaller

This commit is contained in:
Antonio Scandurra 2016-08-08 16:07:17 +02:00
parent 0b4d37a6c0
commit 71a606ab3e

View File

@ -17,7 +17,8 @@ module.exports = function (packagedAppPath, codeSign) {
loadingGif: path.join(CONFIG.repositoryRootPath, 'resources', 'win', 'loading.gif'),
outputDirectory: CONFIG.buildOutputPath,
remoteReleases: `https://atom.io/api/updates?version=${CONFIG.appMetadata.version}`,
setupIcon: path.join(CONFIG.repositoryRootPath, 'resources', 'app-icons', CONFIG.channel, 'atom.ico')
setupIcon: path.join(CONFIG.repositoryRootPath, 'resources', 'app-icons', CONFIG.channel, 'atom.ico'),
title: CONFIG.channel === 'beta' ? 'Atom Beta' : 'Atom'
}
if (codeSign && process.env.WIN_P12KEY_URL) {