Include pwd dir to StartProcess

This commit is contained in:
Jae Kwon
2016-12-06 02:08:05 -08:00
parent 226eb6554f
commit 7f507d69fa
2 changed files with 4 additions and 3 deletions

View File

@ -24,8 +24,9 @@ type Process struct {
// execPath: command name
// args: args to command. (should not include name)
func StartProcess(label string, execPath string, args []string, inFile io.Reader, outFile io.WriteCloser) (*Process, error) {
func StartProcess(label string, dir string, execPath string, args []string, inFile io.Reader, outFile io.WriteCloser) (*Process, error) {
cmd := exec.Command(execPath, args...)
cmd.Dir = dir
cmd.Stdout = outFile
cmd.Stderr = outFile
cmd.Stdin = inFile