Windows: reexec pkg supported

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 64715c4f33fdb98003b7fda8d1dcf9c65463de07
Component: engine
This commit is contained in:
John Howard
2015-05-08 14:15:53 -07:00
parent 9906aa5fe1
commit c39c5e2a47
2 changed files with 15 additions and 1 deletions
@@ -1,4 +1,4 @@
// +build !linux
// +build !linux,!windows
package reexec
@@ -0,0 +1,14 @@
// +build windows
package reexec
import (
"os/exec"
)
func Command(args ...string) *exec.Cmd {
return &exec.Cmd{
Path: Self(),
Args: args,
}
}