Skip to content

Commit

Permalink
update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
rez1dent3 committed Jul 7, 2024
1 parent 9f664ca commit dddf437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dddf437

Please sign in to comment.