Auto merge of #134 - rust-lang:fix/windows-paths, r=<try>
fix watch command path execution closes #126 @hades32 @guttume could you test whether this works on windows by checking out the branch locally and running `cargo run watch`?
This commit is contained in:
commit
b0cf9a453a
|
@ -88,7 +88,7 @@ fn watch() -> notify::Result<()> {
|
||||||
let (tx, rx) = channel();
|
let (tx, rx) = channel();
|
||||||
|
|
||||||
let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(2))?;
|
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);
|
let _ignored = verify(None);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue