-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check if the hierarchy files exist before generating includes. #147
Check if the hierarchy files exist before generating includes. #147
Conversation
This revert will break Debian packages which use exhale, because |
This avoids warnings for Sphinx trying to include files that don't exist. Signed-off-by: Chris Lalancette <[email protected]>
3a343ea
to
d65df03
Compare
OK, thanks for the feedback. In that case, please check out d65df03 |
Thanks for the patch, will take a look this weekend. If you can link a project that was affected that'd be really helpful 🙂 |
The project that I saw this with is rosdoc2: https://github.com/ros-infrastructure/rosdoc2 . |
Yeah that could be helpful, or link me to a known project using it so I can test on that as well. Thanks! |
Adding note to myself, where I got turned around Line 540 in d6fa84f
Those tests are issued for every test class via |
Tested things with #148 (comment) and some slight change to merge them both in, AFAICT this is good to go.
@roehling Do the current changes here work for your project? |
LGTM |
Righto thanks for checking in 🙂 |
This reverts commit 0d1a8a8.
With this in place, I was getting errors of the kind:
That is, because
final_data_string
is empty, we were never creatingpage_view_hiearchy.rst.include
, but we were still trying to.. include
it. Revert this patch, which seems to make things happier. @roehling FYI. @svenevs What do you think?