Skip to content

Commit 800932d

Browse files
committed
fix bug in launchfile
* pcd filenames were not escaped
1 parent c2fba18 commit 800932d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

map_merge_3d/launch/from_pcds.launch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
<include file="$(find map_merge_3d)/launch/map_merge.launch"/>
77

8-
<node pkg="pcl_ros" type="pcd_to_pointcloud" name="robot1_publisher" args="$(arg pcd1) 2" output="screen">
8+
<node pkg="pcl_ros" type="pcd_to_pointcloud" name="robot1_publisher" args="'$(arg pcd1)' 2" output="screen">
99
<param name="frame_id" value="robot1"/>
1010
<remap from="cloud_pcd" to="/robot1/map"/>
1111
</node>
12-
<node pkg="pcl_ros" type="pcd_to_pointcloud" name="robot2_publisher" args="$(arg pcd2) 2" output="screen">
12+
<node pkg="pcl_ros" type="pcd_to_pointcloud" name="robot2_publisher" args="'$(arg pcd2)' 2" output="screen">
1313
<param name="frame_id" value="robot2"/>
1414
<remap from="cloud_pcd" to="/robot2/map"/>
1515
</node>

0 commit comments

Comments
 (0)