Don't output progress in conversion job

[ci skip]
pull/7924/head
Oliver Günther 5 years ago committed by Wieland Lindenthal
parent 624adc016a
commit 7702fd6b0d
  1. 2
      modules/ifc_models/app/services/ifc_models/view_converter_service.rb

@ -99,7 +99,7 @@ module IFCModels
# @param target_dir {String} Path to the temporary output folder
def convert_to_collada(ifc_filepath, target_dir)
convert!(ifc_filepath, target_dir, 'dae') do |target_file|
Open3.capture2e('IfcConvert', '--use-element-guids', ifc_filepath, target_file)
Open3.capture2e('IfcConvert', '--use-element-guids', '--no-progress', '--verbose', ifc_filepath, target_file)
end
end

Loading…
Cancel
Save