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

fix build on OpenBSD by defining Self()
This commit is contained in:
Sebastiaan van Stijn 2018-06-25 20:25:38 +02:00 committed by GitHub
commit cb37987ee1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

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