Skip to content

Commit

Permalink
Do not copy cert.p12
Browse files Browse the repository at this point in the history
  • Loading branch information
ClumsyLee committed Oct 18, 2015
1 parent b134caa commit fb9d4f3
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 @@ -39,7 +39,7 @@ module.exports = function(grunt) {
build_win32: {
command: 'electron-packager . <%= pkg.name %> --platform=win32 ' +
'--arch=ia32 --out=build/ --version=<%= electron_version %> ' +
'--asar=true --ignore=build/ --icon=resource/icon.ico ' +
'--asar=true --ignore="(build|resource/cert.p12)" --icon=resource/icon.ico ' +
'--app-version=<%= pkg.version %> --overwrite=true ' +
'--version-string.CompanyName="Thomas Lee" ' +
'--version-string.LegalCopyright="Copyright (c) 2015 Thomas Lee" ' +
Expand All @@ -53,7 +53,7 @@ module.exports = function(grunt) {
build_darwin: {
command: 'electron-packager . <%= pkg.name %> --platform=darwin ' +
'--arch=x64 --out=build/ --version=<%= electron_version %> ' +
'--ignore=build/ --icon=resource/icon.icns ' +
'--ignore="(build|resource/cert.p12)" --icon=resource/icon.icns ' +
'--app-version=<%= pkg.version %> --overwrite=true ' +
'--sign="Thomas Lee"'
},
Expand Down

0 comments on commit fb9d4f3

Please sign in to comment.