summaryrefslogtreecommitdiff
path: root/src/lib/exec/exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/exec/exec.go')
-rw-r--r--src/lib/exec/exec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/exec/exec.go b/src/lib/exec/exec.go
index c13bad3e0..29f25df65 100644
--- a/src/lib/exec/exec.go
+++ b/src/lib/exec/exec.go
@@ -96,7 +96,7 @@ func Run(argv0 string, argv, envv []string, stdin, stdout, stderr int) (p *Cmd,
}
// Run command.
- p.Pid, err = os.ForkExec(argv0, argv, envv, &fd);
+ p.Pid, err = os.ForkExec(argv0, argv, envv, "", &fd);
if err != nil {
goto Error;
}