Skip to content

Commit

Permalink
Use abspath for doxyfile to stop failure (#163)
Browse files Browse the repository at this point in the history
rkent authored Dec 11, 2024
1 parent 3341f21 commit f5f26e0
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
@@ -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}'"
)

0 comments on commit f5f26e0

Please sign in to comment.