We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ca805 commit 8b486dfCopy full SHA for 8b486df
src/cmd/watch.rs
@@ -149,7 +149,10 @@ where
149
for dir in &book.config.build.extra_watch_dirs {
150
let path = dir.canonicalize().unwrap();
151
if let Err(e) = watcher.watch(&path, Recursive) {
152
- error!("Error while watching extra directory {path:?}:\n {e:?}");
+ error!(
153
+ "Error while watching extra directory {:?}:\n {:?}",
154
+ path, e
155
+ );
156
std::process::exit(1);
157
}
158
0 commit comments