We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8042be commit 1d17f5aCopy full SHA for 1d17f5a
internal/ext/process/gen.go
@@ -71,6 +71,8 @@ func (r *Runner) Invoke(ctx context.Context, method string, args any, reply any,
71
}
72
cmd = exec.CommandContext(ctx, path, method)
73
cmd.Args = []string{"run", r.GoPkg}
74
+ case r.Cmd != "" && r.GoPkg != "":
75
+ return fmt.Errorf("only one of cmd or go_package is allowed")
76
default:
77
return fmt.Errorf("cmd and go_package cannot both be empty for process plugin")
78
0 commit comments