Browse code

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

fix build on OpenBSD by defining Self()

Sebastiaan van Stijn authored on 2018/06/26 03:25:38
Showing 1 changed files
... ...
@@ -6,6 +6,10 @@ import (
6 6
 	"os/exec"
7 7
 )
8 8
 
9
+func Self() string {
10
+	return ""
11
+}
12
+
9 13
 // Command is unsupported on operating systems apart from Linux, Windows, and Darwin.
10 14
 func Command(args ...string) *exec.Cmd {
11 15
 	return nil