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

Revision history [back]

click to hide/show revision 1
initial version

It looks like that you have the catkin install option enabled for your workspace and you do not have install rules for the launch files in the packages CMakeLists.txt.

When install is enabled, source devel/setup.bash will source the install space instead of the devel one. To disable the install option do

catkin config --no-install
catkin clean --all

Then rebuild your workspace.

To add an install rule in your CMakeLists.txt, add:

install(DIRECTORY
launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)