fix build on OpenBSD by defining Self()

Signed-off-by: Fabian Raetz <fabian.raetz@gmail.com>
Upstream-commit: 21537b818de5e4167c5a3856c25b9b06cf16d87d
Component: engine
This commit is contained in:
Fabian Raetz
2018-06-16 17:53:50 +02:00
parent 3ead1493a1
commit c62d7149f1

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