Skip to content

Commit ce9ca28

Browse files
committedJun 15, 2020
Ensure ID is unique per language version
1 parent 45c4cd6 commit ce9ca28

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed
 

‎activestate.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,12 @@ scripts:
122122
echo "Required Arguments: <Project Name> <Release Notes URL> (must be under the ActiveState org)"
123123
exit 1
124124
fi
125+
export GOFLAGS='-mod=vendor'
125126
dir=$(cmd //C echo %CD%)
126127
cp installers/msi-language/Product.p.wxs installers/msi-language/Product.wxs
127128
sed -i "s^{{PROJECT}}^${1}^g" installers/msi-language/Product.wxs
128129
sed -i "s^{{REL_NOTES}}^${2}^g" installers/msi-language/Product.wxs
130+
sed -i "s^{{ID}}^$(go run scripts/uuid-generator/main.go $1)^g" installers/msi-language/Product.wxs
129131
msbuild.exe installers/msi-language/Deploy.wixproj /target:Build "//p:Configuration=Release;Platform=x64;RunWixToolsOutOfProc=true;OutDir=$dir\\build\\msi-language\\"
130132
echo "Copying MSI to build/${1}.msi"
131133
cp build/msi-language/en-us/Deploy.msi "build/${1}.msi"

‎installers/msi-language/Product.p.wxs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="34d163c7-882e-42f9-9d67-d2a61742a725" Name="{{PROJECT}}" Language="1033" Version="1.0.0.0" Manufacturer="ActiveState" UpgradeCode="a8b44798-ee47-4404-8ae3-d821e603b426">
3+
<Product Id="{{ID}}" Name="{{PROJECT}}" Language="1033" Version="1.0.0.0" Manufacturer="ActiveState" UpgradeCode="a8b44798-ee47-4404-8ae3-d821e603b426">
44
<Package Id='*' Keywords='Installer' Description="ActiveState Language Runtime"
55
Comments='State Tool is a registered trademark of ActiveState' Manufacturer='ActiveState'
66
InstallerVersion='200' Languages='1033' Compressed='yes' SummaryCodepage='1252' InstallPrivileges='elevated' AdminImage='yes' InstallScope='perMachine' />

‎scripts/uuid-generator/main.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package main
2+
3+
import (
4+
"crypto/sha256"
5+
"fmt"
6+
"os"
7+
8+
"github.com/google/uuid"
9+
)
10+
11+
func main() {
12+
bytes := []byte(os.Args[1])
13+
hash := sha256.New()
14+
hash.Write(bytes)
15+
16+
uuid := uuid.NewHash(hash, uuid.UUID{}, bytes, 0)
17+
fmt.Print(uuid.String())
18+
}

0 commit comments

Comments
 (0)