Skip to content

Commit

Permalink
xtask: Fix man2markdown to use new location
Browse files Browse the repository at this point in the history
We moved these in an earlier commit.

Signed-off-by: Colin Walters <[email protected]>
  • Loading branch information
cgwalters committed Dec 19, 2023
1 parent 05f557f commit 69bbf51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/xtask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ fn man2markdown(sh: &Shell) -> Result<()> {
.file_stem()
.and_then(|name| name.to_str())
.ok_or_else(|| anyhow!("Expected filename in {path:?}"))?;
let target = format!("docs/man/{filename}.md");
let target = format!("manpages-md/{filename}.md");
cmd!(
sh,
"pandoc --from=man --to=markdown --output={target} {path}"
Expand Down

0 comments on commit 69bbf51

Please sign in to comment.