Skip to content

Commit

Permalink
package: Fix pandoc source format (should be RST)
Browse files Browse the repository at this point in the history
  • Loading branch information
derrod committed Jun 19, 2024
1 parent 91332a2 commit 95c1790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steps/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ fn run_sevenzip(sevenzip: &PathBuf, in_path: &PathBuf, out_path: &PathBuf) -> Re
fn run_pandoc(path: &PathBuf, env: &EnvOptions) -> Result<String> {
let args: Vec<OsString> = vec![
"--from".into(),
"markdown".into(),
"rst".into(),
"--to".into(),
"html".into(),
path.to_owned().into_os_string(),
Expand Down

0 comments on commit 95c1790

Please sign in to comment.