mirror of
https://github.com/bevyengine/bevy
synced 2024-11-24 21:53:07 +00:00
Fix a few typos in CI messages and comments (#7357)
# Objective Stumbled on some typos in our CI tool ## Solution - Fix em
This commit is contained in:
parent
958a898b4a
commit
f27e9b241d
1 changed files with 3 additions and 3 deletions
|
@ -145,13 +145,13 @@ fn main() {
|
|||
// Build examples and check they compile
|
||||
cmd!(sh, "cargo check --workspace --examples")
|
||||
.run()
|
||||
.expect("Please fix failing doc-tests in output above.");
|
||||
.expect("Please fix compiler errors for examples in output above.");
|
||||
}
|
||||
|
||||
if what_to_run.contains(Check::COMPILE_CHECK) {
|
||||
// Build examples and check they compile
|
||||
// Build bevy and check that it compiles
|
||||
cmd!(sh, "cargo check --workspace")
|
||||
.run()
|
||||
.expect("Please fix failing doc-tests in output above.");
|
||||
.expect("Please fix compiler errors in output above.");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue