ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

Hi !

You don't add your launch files in data_files (setup.py in your python package folder).

setup(
...
    data_files=[
    ...
    (os.path.join('share', package_name), glob('launch/*.launch.py'))
    ],
    ....
    )

You will find more explanation on this link