mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
13 lines
387 B
CoffeeScript
13 lines
387 B
CoffeeScript
path = require 'path'
|
|
|
|
module.exports = (grunt) ->
|
|
grunt.registerTask 'set-exe-icon', 'Set icon of the exe', ->
|
|
done = @async()
|
|
|
|
shellAppDir = grunt.config.get('atom.shellAppDir')
|
|
shellExePath = path.join(shellAppDir, 'atom.exe')
|
|
iconPath = path.resolve('resources', 'win', 'atom.ico')
|
|
|
|
rcedit = require('rcedit')
|
|
rcedit(shellExePath, {'icon': iconPath}, done)
|