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