Skip to content

Commit

Permalink
move the media to the right setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
c4glenn committed Mar 20, 2024
1 parent 1505185 commit 88ed51b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/grr_guis/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from setuptools import find_packages, setup
import os
from glob import glob

package_name = 'grr_guis'

Expand All @@ -10,6 +12,7 @@
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'multimedia'), glob('multimedia/*')),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down
1 change: 0 additions & 1 deletion src/grr_python_controllers/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'multimedia'), glob('multimedia/*')),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down

0 comments on commit 88ed51b

Please sign in to comment.