From bfdc45a456d5931e670f299ab7b4f68ecf570bff Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Mon, 26 Mar 2012 17:32:20 +1100 Subject: [PATCH] misc/dist: add -wxs flag to provide custom installer.wxs file R=golang-dev, r CC=golang-dev https://golang.org/cl/5908055 --- misc/dist/bindist.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/misc/dist/bindist.go b/misc/dist/bindist.go index b03fd706db..115049aa68 100644 --- a/misc/dist/bindist.go +++ b/misc/dist/bindist.go @@ -33,6 +33,7 @@ var ( repo = flag.String("repo", "https://code.google.com/p/go", "repo URL") verbose = flag.Bool("v", false, "verbose output") upload = flag.Bool("upload", true, "upload resulting files to Google Code") + wxsFile = flag.String("wxs", "", "path to custom installer.wxs") username, password string // for Google Code upload ) @@ -248,6 +249,9 @@ func (b *Build) Do() error { // Create MSI installer. win := filepath.Join(b.root, "misc/dist/windows") installer := filepath.Join(win, "installer.wxs") + if *wxsFile != "" { + installer = *wxsFile + } appfiles := filepath.Join(work, "AppFiles.wxs") msi := filepath.Join(work, "installer.msi") // Gather files. -- 2.50.0