forked from rojo-rbx/rojo
Improve error message when a partition target doesn't exist.
Closes #46
This commit is contained in:
@@ -78,11 +78,14 @@ impl VfsWatcher {
|
|||||||
let (tx, rx) = mpsc::channel();
|
let (tx, rx) = mpsc::channel();
|
||||||
|
|
||||||
let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(1))
|
let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(1))
|
||||||
.expect("Unable to create watcher!");
|
.expect("Unable to create watcher! This is a bug in Rojo.");
|
||||||
|
|
||||||
watcher
|
match watcher.watch(&root_path, RecursiveMode::Recursive) {
|
||||||
.watch(&root_path, RecursiveMode::Recursive)
|
Ok(_) => (),
|
||||||
.expect("Unable to watch path!");
|
Err(_) => {
|
||||||
|
panic!("Unable to watch partition {}, with path {}! Make sure that it's a file or directory.", partition_name, root_path.display());
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
watchers.push(watcher);
|
watchers.push(watcher);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user