Skip to content

Commit

Permalink
fix wix version range
Browse files Browse the repository at this point in the history
  • Loading branch information
zyxkad committed Mar 11, 2024
1 parent bb21376 commit adacf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build-windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func main() {
}
}

wixVersion := fmt.Sprintf("1.%d.%d.%d", now.Year(), now.YearDay(), now.Hour()*60+now.Minute())
wixVersion := fmt.Sprintf("1.%d.%d.%d", now.Year() / 100, now.Year() % 100 * 400 + now.YearDay(), now.Hour()*60+now.Minute())
fmt.Println("wixVersion:", wixVersion)

signtool = searchSignTool()
Expand Down

0 comments on commit adacf59

Please sign in to comment.