Skip to content

Commit 39de25e

Browse files
committed
last fix ever
1 parent 6947d66 commit 39de25e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ext/process/gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func (r *Runner) Invoke(ctx context.Context, method string, args any, reply any,
7070
return fmt.Errorf("go binary required to run go package %s", r.GoPkg)
7171
}
7272
cmd = exec.CommandContext(ctx, path, method)
73-
cmd.Args = []string{"run", r.GoPkg}
73+
cmd.Args = []string{"go", "run", r.GoPkg}
7474
}
7575

7676
cmd.Stdin = bytes.NewReader(stdin)

0 commit comments

Comments
 (0)