fix build on OpenBSD by defining Self()

Signed-off-by: Fabian Raetz <fabian.raetz@gmail.com>
This commit is contained in:
Fabian Raetz 2018-06-16 17:53:50 +02:00
parent de0abf4315
commit 21537b818d

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