We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 354500f commit d0eb47aCopy full SHA for d0eb47a
src/bootstrap/src/core/sanity.rs
@@ -361,8 +361,11 @@ than building it.
361
// There are three builds of cmake on windows: MSVC, MinGW, and
362
// Cygwin. The Cygwin build does not have generators for Visual
363
// Studio, so detect that here and error.
364
- let out =
365
- command("cmake").arg("--help").run_always().run_capture_stdout(build).stdout();
+ let out = command("cmake")
+ .arg("--help")
366
+ .run_always()
367
+ .run_capture_stdout_exec_ctx(&build)
368
+ .stdout();
369
if !out.contains("Visual Studio") {
370
panic!(
371
"
0 commit comments