Skip to content

Commit

Permalink
Update Gruntfile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
luigiplr committed Dec 10, 2015
1 parent 567c9a0 commit 9762eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ module.exports = function(grunt) {
dir: 'build/',
out: 'dist',
version: packagejson['optionalDependencies']['electron-prebuilt'],
platform: process.platform == 'darwin' ? 'darwin' : 'win32',
platform: process.platform,
arch: process.platform == 'darwin' ? 'x64' : 'ia32',
prune: true,
asar: true
Expand Down Expand Up @@ -158,4 +158,4 @@ module.exports = function(grunt) {
grunt.registerTask('release', ['clean:release', 'electron:windows', 'babel:dist', 'copy:release', 'copy:depsWindows', 'compress:windows']);
// }

};
};

0 comments on commit 9762eed

Please sign in to comment.