github.com/tsuna/docker@v1.7.0-rc3/pkg/reexec/command_windows.go (about)

     1  // +build windows
     2  
     3  package reexec
     4  
     5  import (
     6  	"os/exec"
     7  )
     8  
     9  func Command(args ...string) *exec.Cmd {
    10  	return &exec.Cmd{
    11  		Path: Self(),
    12  		Args: args,
    13  	}
    14  }