Skip to content

Commit

Permalink
[mujoco] do not show blender script log to standard output
Browse files Browse the repository at this point in the history
  • Loading branch information
sugikazu75 committed Sep 19, 2023
1 parent 65ea3ec commit 4a64367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aerial_robot_simulation/scripts/mujoco_model_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def process_xml(urdf_path, mujoco_path):

def convert_dae2stl(meshdir):
aerial_robot_simulation_path = rospack.get_path("aerial_robot_simulation")
cmd = "blender -b -P {} -- {}".format(os.path.join(aerial_robot_simulation_path, "scripts/convert.py"), meshdir)
cmd = "blender -b -P {} -- {} > /dev/null 2>&1".format(os.path.join(aerial_robot_simulation_path, "scripts/convert.py"), meshdir)
run_subprocess(cmd)


Expand Down

0 comments on commit 4a64367

Please sign in to comment.