fix watch command path execution

This commit is contained in:
liv 2019-03-27 10:58:56 +01:00
parent c6765eb3eb
commit 022921168d
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ fn watch() -> notify::Result<()> {
let (tx, rx) = channel();
let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(2))?;
watcher.watch("./exercises", RecursiveMode::Recursive)?;
watcher.watch(Path::new("./exercises"), RecursiveMode::Recursive)?;
let _ignored = verify(None);