summaryrefslogtreecommitdiff
path: root/src/bin/subplot.rs
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2022-10-22 08:59:48 +0000
committerDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2022-10-22 08:59:48 +0000
commit81e985cc026d67e3d506d485b3bf013bfd82987e (patch)
tree13cbc60820d24ec6f797d839f3e40ea92d67ed91 /src/bin/subplot.rs
parent18dedca71451dab31f43a0725277308471d32dfe (diff)
parentfd854872ce86f9ae5d07ec59e598fe85a8607d5c (diff)
downloadsubplot-81e985cc026d67e3d506d485b3bf013bfd82987e.tar.gz
Merge branch 'liw/relative' into 'main'
fix running docgen on a subplot in a different directory See merge request subplot/subplot!293
Diffstat (limited to 'src/bin/subplot.rs')
-rw-r--r--src/bin/subplot.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/bin/subplot.rs b/src/bin/subplot.rs
index 907e616..8ede58d 100644
--- a/src/bin/subplot.rs
+++ b/src/bin/subplot.rs
@@ -278,7 +278,8 @@ impl Docgen {
} else if let Some(date) = doc.meta().date() {
date.to_string()
} else {
- Self::mtime_formatted(Self::mtime(doc.meta().markdown_filename())?)
+ let filename = doc.meta().basedir().join(doc.meta().markdown_filename());
+ Self::mtime_formatted(Self::mtime(&filename)?)
};
pandoc.add_option(pandoc::PandocOption::Meta("date".to_string(), Some(date)));
pandoc.add_option(pandoc::PandocOption::TableOfContents);
@@ -308,7 +309,10 @@ impl Docgen {
}
fn mtime(filename: &Path) -> Result<(u64, u32)> {
- let mtime = fs::metadata(filename)?.modified()?;
+ let mtime = fs::metadata(filename)
+ .map_err(|e| SubplotError::InputFileUnreadable(filename.into(), e))?
+ .modified()
+ .map_err(|e| SubplotError::InputFileMtime(filename.into(), e))?;
let mtime = mtime.duration_since(UNIX_EPOCH)?;
Ok((mtime.as_secs(), mtime.subsec_nanos()))
}