Created
September 27, 2016 03:37
-
-
Save koush/6c97735a7d1c4c292b9ff0833cb9fa4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var resultPromise = electronInstaller.createWindowsInstaller({ | |
appDirectory: appPath, | |
outputDirectory: appPath + '-installer', | |
authors: manifest.author || manifest.name, | |
version: manifest.version, | |
exe: manifest.name + '.exe', | |
setupExe: path.basename(appPath) + '.exe', | |
productName: manifest.name, | |
title: manifest.name, | |
name: manifest.name, | |
iconUrl: iconUrl, | |
description: manifest.description, | |
noMsi: true, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment