From 2caf0b67848fa0f70c07bb57c694d67e0c5866af Mon Sep 17 00:00:00 2001 From: sriv Date: Tue, 14 Feb 2017 20:51:04 -0800 Subject: [PATCH] create zip after installation, #565 --- build/make.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/make.go b/build/make.go index e3629164e..483ef9221 100644 --- a/build/make.go +++ b/build/make.go @@ -281,12 +281,12 @@ func createWindowsInstaller() { panic(err) } copyGaugeFiles(distroDir) - createZipFromUtil(deploy, pName, pName) runProcess("makensis.exe", fmt.Sprintf("/DPRODUCT_VERSION=%s", getBuildVersion()), fmt.Sprintf("/DGAUGE_DISTRIBUTABLES_DIR=%s", distroDir), fmt.Sprintf("/DOUTPUT_FILE_NAME=%s.exe", installerFileName), filepath.Join("build", "install", "windows", "gauge-install.nsi")) + createZipFromUtil(deploy, pName, pName) os.RemoveAll(distroDir) signExecutable(installerFileName+".exe", *certFile, *certFilePwd) }