anaisbetts / grunt-build-atom-shell

Grunt task to build Electron and rebuild node modules
MIT License
122 stars 11 forks source link

Question: customizing icon #10

Closed unindented closed 9 years ago

unindented commented 9 years ago

What would be the best way to automate the customization of the app icon with your grunt task?

anaisbetts commented 9 years ago

@unindented In Atom and Atom Shell Starter, the EXE icon is set post-build: https://github.com/atom/atom-shell-starter/blob/master/build/tasks/set-exe-icon-task.coffee - you could rig the icon pre-build, but there isn't much advantage in doing so, since you have to effectively fork the repo just for that change

unindented commented 9 years ago

Good to know. Thank you!