Remove unneeded ./ from relative paths

This commit is contained in:
mo8it
2024-03-28 21:10:31 +01:00
parent d5ed749e9f
commit 5b4103bbac
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -342,7 +342,7 @@ fn watch(
let mut debouncer = new_debouncer(Duration::from_secs(1), tx)?;
debouncer
.watcher()
.watch(Path::new("./exercises"), RecursiveMode::Recursive)?;
.watch(Path::new("exercises"), RecursiveMode::Recursive)?;
clear_screen();