You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Am I understanding correctly that you'd like the relative paths to be from the current working directory? That means you must navigate to a specific path before running the tool in order for it to function. I based the relative paths off the source file being processed because then the tool can be run regardless of the current working directory, which seemed the more flexible option.
Let's say I have:
include/library/file.hpp
include/library/sub/other.hpp
I would have to have two separate roots for each of those. That is a bit of a pain. Normally a path specified on the command line is relative to the current working directory, and a path in a file (like a config file, header file, html file, etc.) is relative to that file. Having the path be relative to some other file is weird and confusing.
Describe the bug
The path for
-hyde-yaml-dir
and-hyde-src-root
is relative to the directory containing the file being processed. i.e.Here the path
../../include
is relative to./include/psutil/
and not the current working directory.The text was updated successfully, but these errors were encountered: