We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
run_always
1 parent 37ce36f commit f6d3cd7Copy full SHA for f6d3cd7
src/bootstrap/src/core/sanity.rs
@@ -355,7 +355,8 @@ than building it.
355
// There are three builds of cmake on windows: MSVC, MinGW, and
356
// Cygwin. The Cygwin build does not have generators for Visual
357
// Studio, so detect that here and error.
358
- let out = command("cmake").arg("--help").run_capture_stdout(build).stdout();
+ let out =
359
+ command("cmake").arg("--help").run_always().run_capture_stdout(build).stdout();
360
if !out.contains("Visual Studio") {
361
panic!(
362
"
0 commit comments