mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-31 09:21:18 -05:00
Bumps [github.com/gookit/config/v2](https://github.com/gookit/config) from 2.1.8 to 2.2.2. - [Release notes](https://github.com/gookit/config/releases) - [Commits](https://github.com/gookit/config/compare/v2.1.8...v2.2.2) --- updated-dependencies: - dependency-name: github.com/gookit/config/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
647 B
Go
37 lines
647 B
Go
package sysutil
|
||
|
||
import "os/exec"
|
||
|
||
// IsWin system. linux windows darwin
|
||
func IsWin() bool { return false }
|
||
|
||
// IsWindows system. linux windows darwin
|
||
func IsWindows() bool { return false }
|
||
|
||
// IsMac system
|
||
func IsMac() bool { return true }
|
||
|
||
// IsDarwin system
|
||
func IsDarwin() bool { return true }
|
||
|
||
// IsLinux system
|
||
func IsLinux() bool { return false }
|
||
|
||
// OpenURL Open browser URL
|
||
//
|
||
// Mac:
|
||
//
|
||
// open 'https://github.com/inhere'
|
||
//
|
||
// Linux:
|
||
//
|
||
// xdg-open URL
|
||
// x-www-browser 'https://github.com/inhere'
|
||
//
|
||
// Windows:
|
||
//
|
||
// cmd /c start https://github.com/inhere
|
||
func OpenURL(URL string) error {
|
||
return exec.Command("open", URL).Run()
|
||
}
|