Skip to content

Commit

Permalink
Install the launch file for lifecycle_py. (#586)
Browse files Browse the repository at this point in the history
It wasn't being installed previously, which means it couldn't
be used with 'ros2 launch'

Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
  • Loading branch information
clalancette committed Sep 27, 2022
1 parent c319b93 commit abcfe53
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lifecycle_py/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import glob
import os

from setuptools import find_packages
from setuptools import setup

Expand All @@ -11,6 +14,8 @@
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
('share/lifecycle_py/launch',
glob.glob(os.path.join('launch', '*.launch.py'))),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down

0 comments on commit abcfe53

Please sign in to comment.