Skip to content

Commit 69bbf51

Browse files
committed
xtask: Fix man2markdown to use new location
We moved these in an earlier commit. Signed-off-by: Colin Walters <[email protected]>
1 parent 05f557f commit 69bbf51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xtask/src/xtask.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ fn man2markdown(sh: &Shell) -> Result<()> {
103103
.file_stem()
104104
.and_then(|name| name.to_str())
105105
.ok_or_else(|| anyhow!("Expected filename in {path:?}"))?;
106-
let target = format!("docs/man/{filename}.md");
106+
let target = format!("manpages-md/{filename}.md");
107107
cmd!(
108108
sh,
109109
"pandoc --from=man --to=markdown --output={target} {path}"

0 commit comments

Comments
 (0)