skipping the rcedit when both icon & version-string hash is not

available
This commit is contained in:
rameshv 2015-06-17 16:39:58 +05:30
parent d2a2f05476
commit 947c2084aa
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ function buildWinApp (opts, cb, newApp) {
function updateResourceData () {
var finalPath = path.join(opts.out || process.cwd(), opts.name + '-win32')
if (!opts.icon) {
if (!opts.icon && !opts['version-string']) {
return cb(null, finalPath)
}