Set productName in main process on Linux

This commit is contained in:
Kevin Sawicki 2016-10-05 14:43:20 -07:00
parent 69a7025c96
commit b3b856f476

View file

@ -41,7 +41,7 @@ ipcMain.on('message', function (event, ...args) {
})
// Set productName so getUploadedReports() uses the right directory in specs
if (process.platform === 'win32') {
if (process.platform !== 'darwin') {
crashReporter.productName = 'Zombies'
}