Fixed incorrect OS detection

This commit is contained in:
2025-01-31 21:50:35 +01:00
parent 6163ba547e
commit 8de582abf6
8 changed files with 65 additions and 25 deletions

View File

@ -27,7 +27,7 @@ var (
TargetArch string
// Target platform.
TargetOS string
TargetOS OS
)
// Reset resets the configuration to its default values.
@ -36,9 +36,14 @@ func Reset() {
ConstantFold = true
Dry = false
TargetArch = runtime.GOARCH
TargetOS = runtime.GOOS
TargetOS = Unknown
if TargetOS == "darwin" {
TargetOS = "mac"
switch runtime.GOOS {
case "linux":
TargetOS = Linux
case "darwin":
TargetOS = Mac
case "windows":
TargetOS = Windows
}
}

10
src/config/os.go Normal file
View File

@ -0,0 +1,10 @@
package config
type OS uint8
const (
Unknown OS = iota
Linux
Mac
Windows
)