From 047902488c95a12492e5d353aedbd82507b61623 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 4 Feb 2016 15:30:29 -0800 Subject: [PATCH] Only dump symbols on Mac OS X --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 948e2a911..a34e1fbd4 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -295,7 +295,7 @@ module.exports = (grunt) -> ciTasks.push('download-electron-chromedriver') ciTasks.push('build') ciTasks.push('fingerprint') - ciTasks.push('dump-symbols') if process.platform isnt 'win32' + ciTasks.push('dump-symbols') if process.platform is 'darwin' ciTasks.push('set-version', 'check-licenses', 'lint', 'generate-asar') ciTasks.push('mkdeb') if process.platform is 'linux' ciTasks.push('codesign:exe') if process.platform is 'win32' and not process.env.CI