From 947c2084aa4f7fec6e95b75475f47406fcf52a32 Mon Sep 17 00:00:00 2001 From: rameshv Date: Wed, 17 Jun 2015 16:39:58 +0530 Subject: [PATCH] skipping the rcedit when both icon & version-string hash is not available --- win32.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32.js b/win32.js index 16f8cff..9daccb0 100644 --- a/win32.js +++ b/win32.js @@ -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) }