Merge pull request #296 from qbit/openbsd

Add OpenBSD osIdentifier
This commit is contained in:
Daniel
2021-05-04 10:26:08 +02:00
committed by GitHub
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
)