From a3a5386da01195f0392468ac179fc4166b5c773c Mon Sep 17 00:00:00 2001 From: apatniv Date: Sat, 5 Dec 2020 20:17:45 -0500 Subject: Add more context regarding which missing file creation failed --- src/book/book.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/book') diff --git a/src/book/book.rs b/src/book/book.rs index 35f66438..07996cad 100644 --- a/src/book/book.rs +++ b/src/book/book.rs @@ -49,7 +49,7 @@ fn create_missing(src_dir: &Path, summary: &Summary) -> Result<()> { } debug!("Creating missing file {}", filename.display()); - let mut f = File::create(&filename)?; + let mut f = File::create(&filename).with_context(|| format!("Unable to create missing file: {}", filename.display()))?; writeln!(f, "# {}", link.name)?; } } -- cgit v1.2.3