Skip to content

Commit

Permalink
Fix MSI Version Converter By Adding Imports (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethAmazon authored Mar 3, 2022
1 parent 378acf4 commit 670643d
Showing 1 changed file with 9 additions and 0 deletions.
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

0 comments on commit 670643d

Please sign in to comment.