Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Did stdin problem solved? #460

Open
yakuter opened this issue Mar 29, 2023 · 0 comments
Open

Did stdin problem solved? #460

yakuter opened this issue Mar 29, 2023 · 0 comments

Comments

@yakuter
Copy link

yakuter commented Mar 29, 2023

Hello. Did stdin problem solved? How can I do this without using exec.Command

out, err := sh.OutputWith(envMap, filepath.Join(GOBIN, "gocov"), "convert", coverFile)
if err != nil {
    return fmt.Errorf("failed to convert coverage error: %v", err)
}

reportCmd := exec.Command("gocov", "report")
reportCmd.Stdin = strings.NewReader(out)
reportOutput, err := reportCmd.Output()
if err != nil {
    return fmt.Errorf("failed to run report error: %v", err)
}

println(string(reportOutput))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant