From dddf4372b149c5dbc062f34c42e6b8e69f622ce4 Mon Sep 17 00:00:00 2001 From: Maxim Babichev Date: Sun, 7 Jul 2024 12:20:08 +0300 Subject: [PATCH] update main.go --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index dec0841d..8d81448e 100644 --- a/main.go +++ b/main.go @@ -349,7 +349,7 @@ func fixGoPackage(ctx context.Context, protoPaths []string) []string { // that receives an error when the process exits. func runGrpcServer(ctx context.Context, output string) (*exec.Cmd, <-chan error) { // Construct the command to run the gRPC server. - run := exec.CommandContext(ctx, "go", "run", output+"server.go") + run := exec.CommandContext(ctx, "go", "run", output+"server.go") //nolint:gosec run.Env = os.Environ() run.Stdout = os.Stdout run.Stderr = os.Stderr