Author:
Hash:
Timestamp:
+6 -2 +/-2 browse
Kevin Schoon [me@kevinschoon.com]
402139de12586a9338132fd751aae8bb1f335e4d
Wed, 08 Jul 2026 10:47:48 +0000 (1 week ago)
| 1 | diff --git a/crates/cmd/src/dispatch.rs b/crates/cmd/src/dispatch.rs |
| 2 | index a2b0a92..03674b4 100644 |
| 3 | --- a/crates/cmd/src/dispatch.rs |
| 4 | +++ b/crates/cmd/src/dispatch.rs |
| 5 | @@ -10,7 +10,7 @@ use tracing::Level; |
| 6 | author, |
| 7 | version, |
| 8 | about, |
| 9 | - name = "quipu", |
| 10 | + name = "dispatch", |
| 11 | long_about = r#" |
| 12 | |
| 13 | ayllu-dispatch listens for events to occur and performs some action depending on |
| 14 | diff --git a/xtask/src/main.rs b/xtask/src/main.rs |
| 15 | index d250f52..3b160b3 100644 |
| 16 | --- a/xtask/src/main.rs |
| 17 | +++ b/xtask/src/main.rs |
| 18 | @@ -154,8 +154,12 @@ fn main() -> Result<(), Box<dyn std::error::Error>> { |
| 19 | |
| 20 | // Misc man pages |
| 21 | md2man(AYLLU_SUMMARY, &man_dir.join("ayllu.7"))?; |
| 22 | - md2man(AYLLU_TUTORIAL, &man_dir.join("ayllu-tutorial.7"))?; |
| 23 | html_gen(&man_dir.join("ayllu.7"), &man_dir.join("ayllu.7.html"))?; |
| 24 | + md2man(AYLLU_TUTORIAL, &man_dir.join("ayllu-tutorial.7"))?; |
| 25 | + html_gen( |
| 26 | + &man_dir.join("ayllu-tutorial.7"), |
| 27 | + &man_dir.join("ayllu-tutorial.7.html"), |
| 28 | + )?; |
| 29 | let mut md_input = AYLLU_CONFIG.to_string(); |
| 30 | md_input.push_str("\n```\n"); |
| 31 | md_input.push_str(AYLLU_ANNOTATED_EXAMPLE); |