1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-23 04:46:08 +02:00

Auto merge of #191 - MrFroop:master, r=komaeda

Fix(watch): Check if changed exercise file exists before calling verify.

Prevent a panic if the file triggering the watch event is gone.
This commit is contained in:
bors 2019-07-12 08:16:35 +00:00
commit 7dc90094d2

View File

@ -101,7 +101,7 @@ fn watch(exercises: &[Exercise]) -> notify::Result<()> {
match rx.recv() {
Ok(event) => match event {
DebouncedEvent::Create(b) | DebouncedEvent::Chmod(b) | DebouncedEvent::Write(b) => {
if b.extension() == Some(OsStr::new("rs")) {
if b.extension() == Some(OsStr::new("rs")) && b.exists() {
println!("----------**********----------\n");
let filepath = b.as_path().canonicalize().unwrap();
let exercise = exercises