We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d7ce6e commit 6cd42bbCopy full SHA for 6cd42bb
src/main.rs
@@ -84,10 +84,12 @@ fn watch() -> notify::Result<()> {
84
let _ignored = verify(None);
85
86
loop {
87
- match rx.recv() {
+ match rx.recv() {
88
Ok(event) => match event {
89
DebouncedEvent::Create(b) | DebouncedEvent::Chmod(b) | DebouncedEvent::Write(b) => {
90
if b.extension() == Some(OsStr::new("rs")) {
91
+ println!("----------**********----------");
92
+ println!();
93
let _ignored = verify(Some(b.as_path().to_str().unwrap()));
94
}
95
0 commit comments