mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-24 14:37:32 -05:00
Don't try to check a solution that doesn't exist
This commit is contained in:
parent
611f9d8722
commit
50530fa3cf
1 changed files with 5 additions and 0 deletions
|
@ -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)?;
|
||||
|
|
Loading…
Reference in a new issue