Add OpenBSD osIdentifier

This lets portmaster build on OpenBSD.
This commit is contained in:
Aaron Bieber
2021-04-28 19:01:30 -06:00
parent a3b495f6c9
commit 664e8371ac
2 changed files with 7 additions and 0 deletions

View File

@@ -5,4 +5,5 @@ const (
PlatformLinux = "linux"
PlatformWindows = "windows"
PlatformMac = "macos"
PlatformOpenBSD = "openbsd"
)

View File

@@ -0,0 +1,6 @@
package profile
// OS Identifier
const (
osIdentifier = PlatformOpenBSD
)