diff --git a/script/lib/create-windows-installer.js b/script/lib/create-windows-installer.js index 7249e4873..6733b52e9 100644 --- a/script/lib/create-windows-installer.js +++ b/script/lib/create-windows-installer.js @@ -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) {