Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
last fix ever
  • Loading branch information
frankli0324 committed Oct 30, 2025
commit 39de25e05a6b5e4c94f5bae58376e7de5bbf081c
2 changes: 1 addition & 1 deletion internal/ext/process/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (r *Runner) Invoke(ctx context.Context, method string, args any, reply any,
return fmt.Errorf("go binary required to run go package %s", r.GoPkg)
}
cmd = exec.CommandContext(ctx, path, method)
cmd.Args = []string{"run", r.GoPkg}
cmd.Args = []string{"go", "run", r.GoPkg}
}

cmd.Stdin = bytes.NewReader(stdin)
Expand Down
Loading