From c109118cb4b12e2d4cba04b3b5eac38ea0e76560 Mon Sep 17 00:00:00 2001 From: Pete Miller Date: Thu, 1 Feb 2018 12:20:34 -0800 Subject: [PATCH] Windows installation executable filename changed to expected format. Fix #12978 --- tools/buildInstaller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildInstaller.js b/tools/buildInstaller.js index 01df398b4c..12e340d962 100644 --- a/tools/buildInstaller.js +++ b/tools/buildInstaller.js @@ -175,7 +175,7 @@ if (isDarwin) { signWithParams: format('-a -fd sha256 -f "%s" -p "%s"', path.resolve(cert), certPassword), noMsi: true, exe: `${appName}.exe`, - setupExe: `${appName}-Setup-${arch}.exe` + setupExe: `${appName}Setup-${arch}.exe` }) resultPromise.then(() => { console.log('done')