ROSOnWindows icon indicating copy to clipboard operation
ROSOnWindows copied to clipboard

MoveIt Setup assistant generates xacro entry that's not cross platform

Open ooeygui opened this issue 6 years ago • 2 comments

The setup tool adds unneeded single quotes, which causes problems on Windows.

  <param if="$(arg load_robot_description)" name="$(arg robot_description)" command="xacro  '$(find x_arm_support)/urdf\workcell.xacro'"/>

Should generate something more like this:

  <param if="$(arg load_robot_description)" name="$(arg robot_description)" command="xacro  $(find x_arm_support)/urdf/workcell.xacro"/>

ooeygui avatar Feb 09 '19 21:02 ooeygui

#106 provides info on the error generated when encountered in windows.

bakerhillpins avatar Jun 05 '19 17:06 bakerhillpins

Hope this could be addressed by this: https://github.com/ros/ros_comm/pull/2051

seanyen avatar Sep 23 '20 00:09 seanyen

addressed in ROScomm

IoTDan avatar Oct 11 '22 21:10 IoTDan