Skip to content

Commit

Permalink
Temporarily fixed osx builds. resolves #24
Browse files Browse the repository at this point in the history
  • Loading branch information
bastimeyer committed Nov 9, 2014
1 parent ec5cd26 commit b1361f8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
23 changes: 19 additions & 4 deletions build/tasks/configs/nodewebkit.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,34 @@ module.exports = {
version : "<%= package.config['node-webkit-version'] %>"
},
win : {
options : { win: true, winIco: "build/resources/icons/icon-16-32-48-256.ico" },
options : {
win : true,
winIco : "build/resources/icons/icon-16-32-48-256.ico"
},
src : "build/tmp/**"
},
osx : {
options : { osx: true, macIcns: "build/resources/icons/icon-512.icns" },
options : {
osx : true,
macIcns : "build/resources/icons/icon-512.icns",
macPlist : {
LSEnvironment : {
PATH : "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
}
}
},
src : "build/tmp/**"
},
linux32 : {
options : { linux32: true },
options : {
linux32 : true
},
src : "build/tmp/**"
},
linux64 : {
options : { linux64: true },
options : {
linux64 : true
},
src : "build/tmp/**"
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"grunt-contrib-requirejs": "0.4.4",
"grunt-contrib-uglify": "0.5.1",
"grunt-contrib-watch": "0.6.1",
"grunt-node-webkit-builder": "0.2.3",
"grunt-node-webkit-builder": "git://github.com/bastimeyer/grunt-node-webkit-builder#osx-plist-patch-dependency",
"load-grunt-config": "0.13.1",
"q": "1.0.1",
"q-io": "1.11.3"
Expand Down

0 comments on commit b1361f8

Please sign in to comment.