summaryrefslogtreecommitdiff
path: root/src/doc.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-01-03 06:16:07 +0000
committerLars Wirzenius <liw@liw.fi>2022-01-03 06:16:07 +0000
commit0734368d45b349a6ab433c1d41f35a95ea58c9ec (patch)
treeb69c6b84b9ce025d6f7afd92d734452757f4f365 /src/doc.rs
parente8082fef03bd04042dad3fb2d0513587c54874ab (diff)
parentb9de4d5e810d07b679ad9ab9e46d58e4c76213cc (diff)
downloadsubplot-0734368d45b349a6ab433c1d41f35a95ea58c9ec.tar.gz
Merge branch 'more-rust-subplots' into 'main'
codegen: Refuse to generate code if the specified template is not present Closes #259 See merge request subplot/subplot!242
Diffstat (limited to 'src/doc.rs')
-rw-r--r--src/doc.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/doc.rs b/src/doc.rs
index 9989bc4..5c81e27 100644
--- a/src/doc.rs
+++ b/src/doc.rs
@@ -559,6 +559,9 @@ pub fn codegen(filename: &Path, output: &Path, template: Option<&str>) -> Result
.unwrap_or_else(|| doc.template())?
.to_string();
event!(Level::TRACE, ?template);
+ if !doc.meta().templates().any(|t| t == template) {
+ return Err(SubplotError::TemplateSupportNotPresent);
+ }
if !doc.check_named_files_exist(&template)?
|| !doc.check_matched_steps_have_impl(&template)
|| !doc.check_embedded_files_are_used(&template)?