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 958a898 commit f27e9b2Copy full SHA for f27e9b2
tools/ci/src/main.rs
@@ -145,13 +145,13 @@ fn main() {
145
// Build examples and check they compile
146
cmd!(sh, "cargo check --workspace --examples")
147
.run()
148
- .expect("Please fix failing doc-tests in output above.");
+ .expect("Please fix compiler errors for examples in output above.");
149
}
150
151
if what_to_run.contains(Check::COMPILE_CHECK) {
152
- // Build examples and check they compile
+ // Build bevy and check that it compiles
153
cmd!(sh, "cargo check --workspace")
154
155
+ .expect("Please fix compiler errors in output above.");
156
157
0 commit comments