Windows: reexec pkg supported
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
eef8989683
commit
8239debe8f
2 changed files with 15 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
// +build !linux
|
||||
// +build !linux,!windows
|
||||
|
||||
package reexec
|
||||
|
||||
|
|
14
reexec/command_windows.go
Normal file
14
reexec/command_windows.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
// +build windows
|
||||
|
||||
package reexec
|
||||
|
||||
import (
|
||||
"os/exec"
|
||||
)
|
||||
|
||||
func Command(args ...string) *exec.Cmd {
|
||||
return &exec.Cmd{
|
||||
Path: Self(),
|
||||
Args: args,
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue