Removing unless from argument (#994)
The roslaunch API throws an exception if setting the argument but not using it. This now forces any including launch files to provide an argument for it, even if it might not be used in the `no_rviz` case.master
parent
ea29393e97
commit
744c03a31f
|
@ -17,7 +17,7 @@
|
||||||
<launch>
|
<launch>
|
||||||
<arg name="bag_filenames"/>
|
<arg name="bag_filenames"/>
|
||||||
<arg name="no_rviz"/>
|
<arg name="no_rviz"/>
|
||||||
<arg unless="$(arg no_rviz)" name="rviz_config"/>
|
<arg name="rviz_config"/>
|
||||||
<arg name="configuration_directory"/>
|
<arg name="configuration_directory"/>
|
||||||
<arg name="configuration_basenames"/>
|
<arg name="configuration_basenames"/>
|
||||||
<arg name="urdf_filenames"/>
|
<arg name="urdf_filenames"/>
|
||||||
|
|
Loading…
Reference in New Issue