1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-07 20:02:17 +02:00

Don't try to check a solution that doesn't exist

This commit is contained in:
mo8it 2024-06-01 21:50:11 +02:00
parent 611f9d8722
commit 50530fa3cf

View File

@ -166,6 +166,11 @@ fn check_solutions(info_file: &InfoFile) -> Result<()> {
let mut output = Vec::with_capacity(OUTPUT_CAPACITY);
for exercise_info in &info_file.exercises {
if !Path::new(&exercise_info.sol_path()).exists() {
// No solution to check.
continue;
}
let success = exercise_info.run_solution(&mut output, &target_dir)?;
if !success {
io::stderr().write_all(&output)?;