Skip to content

Commit

Permalink
Use abspath for doxyfile to stop failure
Browse files Browse the repository at this point in the history
  • Loading branch information
rkent committed Dec 10, 2024
1 parent 3341f21 commit 8586916
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rosdoc2/verbs/build/builders/doxygen_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ def build(self, *, doc_build_folder, output_staging_directory):
}))

# Invoke Doxygen.
cmd = ['doxygen', os.path.relpath(extended_doxyfile_path, start=working_directory)]
abs_doxyfile_path = os.path.abspath(extended_doxyfile_path)
cmd = ['doxygen', abs_doxyfile_path]
logger.info(
f"Running Doxygen: '{' '.join(cmd)}' in '{working_directory}'"
)
Expand Down

0 comments on commit 8586916

Please sign in to comment.