Auto merge of #134 - rust-lang:fix/windows-paths, r=komaeda

fix watch command path execution

@hades32 @guttume could you test whether this works on windows by checking out the branch locally and running `cargo run watch`?
pull/141/head
bors 6 years ago
commit fbd0ccbd5b

@ -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…
Cancel
Save