2021-08-23 15:14:53 +02:00
|
|
|
//go:build !linux && !windows && !freebsd && !darwin
|
2017-11-01 23:37:53 +00:00
|
|
|
// +build !linux,!windows,!freebsd,!darwin
|
2014-10-29 21:06:51 +02:00
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package reexec // import "github.com/docker/docker/pkg/reexec"
|
2014-10-29 21:06:51 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
2018-06-16 17:53:50 +02:00
|
|
|
func Self() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-11-01 23:37:53 +00:00
|
|
|
// Command is unsupported on operating systems apart from Linux, Windows, and Darwin.
|
2014-10-29 21:06:51 +02:00
|
|
|
func Command(args ...string) *exec.Cmd {
|
|
|
|
return nil
|
|
|
|
}
|