Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gazebo_ros: rename python package #1428

Open
wants to merge 3 commits into
base: ros2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gazebo_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ link_directories(
${gazebo_dev_LIBRARY_DIRS}
)

ament_python_install_package(scripts)
ament_python_install_package(gazebo_ros)

# gazebo_ros_node
add_library(gazebo_ros_node SHARED
Expand Down Expand Up @@ -177,7 +177,7 @@ install(DIRECTORY include/

install(
PROGRAMS
scripts/gazebo_ros_paths.py
gazebo_ros/gazebo_ros_paths.py
DESTINATION lib/${PROJECT_NAME}/
)

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion gazebo_ros/launch/gzclient.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from launch.substitutions import LaunchConfiguration
from launch.substitutions import PythonExpression

from scripts import GazeboRosPaths
from gazebo_ros import GazeboRosPaths


def generate_launch_description():
Expand Down
2 changes: 1 addition & 1 deletion gazebo_ros/launch/gzserver.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from launch.substitutions import LaunchConfiguration
from launch.substitutions import PythonExpression

from scripts import GazeboRosPaths
from gazebo_ros import GazeboRosPaths


def generate_launch_description():
Expand Down