mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Add an error message when a file is not embedded
This commit is contained in:
parent
23f0fae1c8
commit
b5e17c965d
@ -113,6 +113,9 @@ impl EmbeddedFiles {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Err(io::Error::from(io::ErrorKind::NotFound))
|
Err(io::Error::new(
|
||||||
|
io::ErrorKind::NotFound,
|
||||||
|
format!("{} not found in the embedded files", path.display()),
|
||||||
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user