Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mh-cbon committed Jun 26, 2016
1 parent 0a1cd22 commit ef8427b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions wix/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ func GenerateCmd(wixFile *manifest.WixManifest, templates []string, msiOutFile s
}
cmd += "candle"
if arch != "" {
if arch=="386" {
arch = "x86"
} else if arch=="amd64" {
arch = "x64"
}
if arch == "386" {
arch = "x86"
} else if arch == "amd64" {
arch = "x64"
}
cmd += " -arch " + arch
}
for i, dir := range wixFile.RelDirs {
Expand Down

0 comments on commit ef8427b

Please sign in to comment.