Skip to content

Commit

Permalink
Merge pull request #999 from mackerelio/test-wix
Browse files Browse the repository at this point in the history
FIX wix process
  • Loading branch information
ne-sachirou committed May 1, 2024
2 parents f1f9c60 + e3c9b1b commit 35c84b1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions wix/generate_wxs/generate_wxs.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,11 @@ func main() {
{Name: xml.Name{Local: "Id", Space: ""}, Value: "Plugins"},
{Name: xml.Name{Local: "Guid", Space: ""}, Value: fmt.Sprintf("%x-%x-%x-%x-%x", b[0:4], b[4:6], b[6:8], b[8:10], b[10:])},
}
component.Children = append(component.Children, xml.CharData("\n "))

createFolder := new(Node)
createFolder.Name = xml.Name{Local: "CreateFolder"}
component.Children = append(component.Children, createFolder)
component.Children = append(component.Children, xml.CharData("\n "))
installDir.Children = append(installDir.Children, xml.CharData("\n "))

Expand Down

0 comments on commit 35c84b1

Please sign in to comment.