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
When a file is generated in a devel workspace, the path resolution is not clear: generated files live in devel/share/{package_name}; while rospack will resolve to src/{package_name}. Perhaps we need to get all possible paths and check them?
This can happen with URDF files that are generated during build from xacro.
The text was updated successfully, but these errors were encountered:
The generated URDF files get copied into the SRC where ParsePath should pick it up correctly. Am I missing something here? Or was this a recent change to how xacro functions and it got resolved?
Not every function call to xacro generates them in src/ because technically you are not supposed to modify the source directory. The overlay will search both devel and src. Our ParsePath currently does not do that.
When a file is generated in a devel workspace, the path resolution is not clear: generated files live in
devel/share/{package_name}
; while rospack will resolve tosrc/{package_name}
. Perhaps we need to get all possible paths and check them?This can happen with URDF files that are generated during build from xacro.
The text was updated successfully, but these errors were encountered: