mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6ed1163c98
Files that are suffixed with `_linux.go` or `_windows.go` are already only built on Linux / Windows, so these build-tags were redundant. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
21 lines
427 B
Go
21 lines
427 B
Go
package reexec
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// Self returns the path to the current process's binary.
|
|
// Uses os.Args[0].
|
|
func Self() string {
|
|
return naiveSelf()
|
|
}
|
|
|
|
// Command returns *exec.Cmd which has Path as current binary.
|
|
// For example if current binary is "docker.exe" at "C:\", then cmd.Path will
|
|
// be set to "C:\docker.exe".
|
|
func Command(args ...string) *exec.Cmd {
|
|
return &exec.Cmd{
|
|
Path: Self(),
|
|
Args: args,
|
|
}
|
|
}
|