From b3b856f47641fc7470a57ed956b6791b034d0c8b Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 5 Oct 2016 14:43:20 -0700 Subject: [PATCH] Set productName in main process on Linux --- spec/static/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/static/main.js b/spec/static/main.js index 77c2feb..e910e4d 100644 --- a/spec/static/main.js +++ b/spec/static/main.js @@ -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' } -- 2.7.4