Skip to content

Commit b0dc22b

Browse files
author
LoukaO
committed
Fix versioninfo.json hex format - use plain hex strings without 0x prefix
- goversioninfo expects hex values as plain strings without 0x prefix - FileFlagsMask: '3f' instead of '0x3f' - FileFlags: '00' instead of '0x00' - FileOS: '040004' instead of '0x040004' - FileType: '01' instead of '0x01' - FileSubType: '00' instead of '0x00' - LangID: '0409' instead of '0x0409' - CharsetID: '04B0' instead of '0x04B0'
1 parent 8dec5ca commit b0dc22b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ jobs:
5757
"Patch" = [int]$PATCH
5858
"Build" = [int]$BUILD
5959
}
60-
"FileFlagsMask" = "0x3f"
61-
"FileFlags" = "0x00"
62-
"FileOS" = "0x040004"
63-
"FileType" = "0x01"
64-
"FileSubType" = "0x00"
60+
"FileFlagsMask" = "3f"
61+
"FileFlags" = "00"
62+
"FileOS" = "040004"
63+
"FileType" = "01"
64+
"FileSubType" = "00"
6565
}
6666
"StringFileInfo" = @{
6767
"Comments" = "TerminusAI CLI agent"
@@ -79,8 +79,8 @@ jobs:
7979
}
8080
"VarFileInfo" = @{
8181
"Translation" = @{
82-
"LangID" = "0x0409"
83-
"CharsetID" = "0x04B0"
82+
"LangID" = "0409"
83+
"CharsetID" = "04B0"
8484
}
8585
}
8686
}

0 commit comments

Comments
 (0)