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:
bors 2019-04-02 20:16:36 +00:00
commit b0cf9a453a
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);