Skip to content

Commit 92cb5b6

Browse files
committed
Enhancement: add osversion.Build() utility
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 672e52e commit 92cb5b6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

osversion/osversion_windows.go

+6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ func Get() OSVersion {
4646
return osv
4747
}
4848

49+
// Build gets the build-number on Windows
50+
// The calling application must be manifested to get the correct version information.
51+
func Build() uint16 {
52+
return Get().Build
53+
}
54+
4955
func (osv OSVersion) ToString() string {
5056
return fmt.Sprintf("%d.%d.%d", osv.MajorVersion, osv.MinorVersion, osv.Build)
5157
}

0 commit comments

Comments
 (0)