We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a4d51f commit 410e31dCopy full SHA for 410e31d
src/roswire/definitions/package.py
@@ -134,7 +134,8 @@ def _paths_ros2(shell: dockerblade.Shell,
134
logger.error('failed to obtain ROS2 package prefixes')
135
raise
136
package_to_prefix: Mapping[str, str] = json.loads(jsn)
137
- paths = list(package_to_prefix.values())
+ paths: List[str] = [os.path.join(prefix, f'share/{package}')
138
+ for (package, prefix) in package_to_prefix.items()]
139
return paths
140
141
@classmethod
0 commit comments