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`?
This commit is contained in:
bors 2019-04-03 09:37:37 +00:00
commit fbd0ccbd5b
1 changed files with 1 additions and 1 deletions

View File

@ -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);