diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index f78f13c..78ed060 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 |
