From: Kevin Sawicki Date: Wed, 5 Oct 2016 21:43:20 +0000 (-0700) Subject: Set productName in main process on Linux X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3b856f47641fc7470a57ed956b6791b034d0c8b;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Set productName in main process on Linux --- 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' }