diff --git a/src/utilities/bcl/templates/ReportingMeasure/measure.rb b/src/utilities/bcl/templates/ReportingMeasure/measure.rb index 4f9c91a357..e40fcaf906 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/measure.rb +++ b/src/utilities/bcl/templates/ReportingMeasure/measure.rb @@ -177,7 +177,8 @@ def run(runner, user_arguments) renderer = ERB.new(html_in) html_out = renderer.result(binding) - # write html file + # write html file: any file named 'report*.*' in the current working directory + # will be copied to the ./reports/ folder as 'reports/_.html' html_out_path = './report.html' File.open(html_out_path, 'w') do |file| file << html_out