Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
rafal-gorecki committed Dec 3, 2024
1 parent 8ce1d57 commit 2513a07
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 4 additions & 2 deletions husarion_ugv_controller/launch/controller.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def generate_launch_description():
"wheel_config_path",
default_value=PathJoinSubstitution(
[
FindPackageShare("husario_ugv_description"),
FindPackageShare("husarion_ugv_description"),
"config",
PythonExpression(["'", wheel_type, ".yaml'"]),
]
Expand Down Expand Up @@ -153,7 +153,9 @@ def generate_launch_description():
[
PathJoinSubstitution([FindExecutable(name="xacro")]),
" ",
PathJoinSubstitution([FindPackageShare("husario_ugv_description"), "urdf", urdf_file]),
PathJoinSubstitution(
[FindPackageShare("husarion_ugv_description"), "urdf", urdf_file]
),
" use_sim:=",
use_sim,
" wheel_config_file:=",
Expand Down
4 changes: 3 additions & 1 deletion husarion_ugv_description/launch/load_urdf.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ def generate_launch_description():
[
PathJoinSubstitution([FindExecutable(name="xacro")]),
" ",
PathJoinSubstitution([FindPackageShare("husario_ugv_description"), "urdf", urdf_file]),
PathJoinSubstitution(
[FindPackageShare("husarion_ugv_description"), "urdf", urdf_file]
),
" use_sim:=",
use_sim,
" wheel_config_file:=",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ def generate_launch_description():
[
PathJoinSubstitution([FindExecutable(name="xacro")]),
" ",
PathJoinSubstitution([FindPackageShare("husario_ugv_description"), "urdf", urdf_file]),
PathJoinSubstitution(
[FindPackageShare("husarion_ugv_description"), "urdf", urdf_file]
),
" use_sim:=",
use_sim,
" wheel_config_file:=",
Expand Down

0 comments on commit 2513a07

Please sign in to comment.