nwjs-macappstore-builder
Version:
Easily build and publish NW.js apps on the Mac App Store.
17 lines (13 loc) • 416 B
JavaScript
;
var exec = require('child_process').exec;
var m = {};
m.installIcon = function(app_path, icon_path, callback)
{
var rm_command = 'rm "' + app_path + '/Contents/Resources/nw.icns"';
var cp_command = 'cp "' + icon_path + '" "' + app_path + '/Contents/Resources/nw.icns"';
exec(rm_command + ' && ' + cp_command, function(error)
{
callback(error);
});
};
module.exports = m;