Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix MSI Version Converter By Adding Imports #390

Merged
merged 1 commit into from
Mar 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions integration/msi/tools/msiversion/msiversionconverter.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@

package main

import (
"fmt"
"log"
"os"
"os/exec"
"strconv"
"strings"
)

/* We can't use the standard cw agent version for the windows msi due to limitations in the wix tools builder for msi
msi version is different from the agent original version because of the msi limit Product version must have a major version less than 256,
a minor version less than 256, and a build version less than 65536
Expand Down