doc: show a warning when no tldr example

This commit is contained in:
Sylvestre Ledru 2023-05-08 15:49:56 +02:00
parent 51da8bf7b3
commit caf9bfcadc

View file

@ -216,6 +216,10 @@ impl<'a, 'b> MDWriter<'a, 'b> {
} else if let Some(f) = get_zip_content(zip, &format!("pages/linux/{}.md", self.name)) {
f
} else {
println!(
"Warning: Could not find tldr examples for page '{}'",
self.name
);
return Ok(());
};