mirror of https://github.com/ethereum/go-ethereum
vendor: update docker/docker/pkg/reexec so that it compiles on OpenBSD (#17084)
parent
8974e2e5e0
commit
223d943481
@ -1,12 +1,16 @@ |
||||
// +build !linux,!windows,!freebsd,!solaris,!darwin
|
||||
// +build !linux,!windows,!freebsd,!darwin
|
||||
|
||||
package reexec |
||||
package reexec // import "github.com/docker/docker/pkg/reexec"
|
||||
|
||||
import ( |
||||
"os/exec" |
||||
) |
||||
|
||||
// Command is unsupported on operating systems apart from Linux, Windows, Solaris and Darwin.
|
||||
func Self() string { |
||||
return "" |
||||
} |
||||
|
||||
// Command is unsupported on operating systems apart from Linux, Windows, and Darwin.
|
||||
func Command(args ...string) *exec.Cmd { |
||||
return nil |
||||
} |
||||
|
Loading…
Reference in new issue