2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-09-22 01:29:02 +00:00

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

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)
}