Skip to content

Commit

Permalink
Add bundle ID and version for OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
arvindkumarc committed Oct 21, 2015
1 parent 8a3525b commit 391684c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt)
pkg = require('./package.json')

grunt.initConfig({

Expand All @@ -19,9 +20,11 @@ module.exports = function (grunt) {
electron: {
osx: {
options: {
name: 'Docker Menu',
name: 'DockerMenu-' + pkg.version + '-Mac',
dir: 'build/app',
icon: 'images/DockerMenu.icns',
'app-bundle-id': 'dockermenu',
'app-version': pkg.version,
asar: true,
overwrite: true,
out: 'build',
Expand Down

0 comments on commit 391684c

Please sign in to comment.