Merge pull request #37301 from Mischi/fix-define-self

fix build on OpenBSD by defining Self()
Upstream-commit: cb37987ee11655ed6bbef663d245e55922354c68
Component: engine
This commit is contained in:
Sebastiaan van Stijn
2018-06-25 20:25:38 +02:00
committed by GitHub

View File

@ -6,6 +6,10 @@ import (
"os/exec"
)
func Self() string {
return ""
}
// Command is unsupported on operating systems apart from Linux, Windows, and Darwin.
func Command(args ...string) *exec.Cmd {
return nil