diff options
Diffstat (limited to 'helper/cmd.go')
| -rw-r--r-- | helper/cmd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helper/cmd.go b/helper/cmd.go index 5b66afe7..4fe978a2 100644 --- a/helper/cmd.go +++ b/helper/cmd.go @@ -42,7 +42,7 @@ func newHelperCmd( ) (cmd *helperCmd, args []string) { cmd = new(helperCmd) cmd.helperFiles, args = newHelperFiles(ctx, wt, stat, argF, extraFiles) - cmd.Cmd = commandContext(ctx, name) + cmd.Cmd = exec.CommandContext(ctx, name) cmd.Cmd.Cancel = func() error { return cmd.Process.Signal(syscall.SIGTERM) } cmd.WaitDelay = WaitDelay return |
