diff --git a/pkg/proc/debuginfod/debuginfod.go b/pkg/proc/debuginfod/debuginfod.go index a46d98067c..e0297b1f61 100644 --- a/pkg/proc/debuginfod/debuginfod.go +++ b/pkg/proc/debuginfod/debuginfod.go @@ -12,7 +12,7 @@ func execFind(args ...string) (string, error) { return "", err } cmd := exec.Command(debuginfodFind, args...) - out, err := cmd.CombinedOutput() + out, err := cmd.Output() // ignore stderr if err != nil { return "", err }