1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

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