Skip to content

Commit

Permalink
CI: Fix output directory for build-latexusage-pdf.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamievlin committed Aug 24, 2024
1 parent 55b30d7 commit e67dc47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/build-latexusage-pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ def main():
args = parse_args()
buildroot_path = pathlib.Path(args.build_dir)
clean_artifacts(buildroot_path, args.latexusage_name)

buildroot_path_str = str(buildroot_path.as_posix())
pdflatex_base_args = [
args.pdflatex_executable,
f"-output-directory={str(buildroot_path)}",
f"-output-directory={buildroot_path_str}",
]
asy_base_dir = pathlib.Path(args.asy_base_dir)
asy_base_args = [
Expand Down

0 comments on commit e67dc47

Please sign in to comment.