2015-05-08 21:15:53 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package reexec
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
2015-07-24 17:51:51 +00:00
|
|
|
// Self returns the path to the current process's binary.
|
|
|
|
// Uses os.Args[0].
|
|
|
|
func Self() string {
|
|
|
|
return naiveSelf()
|
|
|
|
}
|
|
|
|
|
2015-07-20 17:16:37 +00:00
|
|
|
// Command returns *exec.Cmd which have Path as current binary.
|
|
|
|
// For example if current binary is "docker.exe" at "C:\", then cmd.Path will
|
|
|
|
// be set to "C:\docker.exe".
|
2015-05-08 21:15:53 +00:00
|
|
|
func Command(args ...string) *exec.Cmd {
|
|
|
|
return &exec.Cmd{
|
|
|
|
Path: Self(),
|
|
|
|
Args: args,
|
|
|
|
}
|
|
|
|
}
|