Skip to content

Commit da16dfa

Browse files
authored
fix(compute/rust) handling of 'cargo version' output (#1197)
'cargo version' emits the version string to stdout, so the code should capture only stdout, and parse it for checking the ToolchainConstraint. Capturing stderr and including it in the parsing process can result in bogus version numbers being found and reported (as is happening right now when Rust 1.78 is used in a project directory where .cargo/config exists).
1 parent 36a4ce4 commit da16dfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/commands/compute/language_rust.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,8 @@ func (r *Rust) toolchainConstraint() {
312312
// #nosec
313313
// nosemgrep
314314
cmd := exec.Command(args[0], args[1:]...)
315-
stdoutStderr, err := cmd.CombinedOutput()
316-
output := string(stdoutStderr)
315+
stdout, err := cmd.Output()
316+
output := string(stdout)
317317
if err != nil {
318318
return
319319
}

0 commit comments

Comments
 (0)