Change download path for report templates

This commit is contained in:
Martin Artnik 2024-10-18 14:38:35 +02:00 committed by GitHub
parent a5389b780c
commit 8d6c0b4380
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,8 +12,8 @@ contents = case template_zip_url.scheme
when 'https' when 'https'
HTTParty.get(template_zip_url).body HTTParty.get(template_zip_url).body
when 's3' when 's3'
system("AWS_PAGER=\"\" aws s3api get-object --bucket #{template_zip_url.host} --key #{template_zip_url.path[1..]} ./report_templates.zip") system("AWS_PAGER=\"\" aws s3api get-object --bucket #{template_zip_url.host} --key #{template_zip_url.path[1..]} #{ENV.fetch('APP_HOME', '.')}/app/views/reports/report_templates.zip")
File.read('./report_templates.zip') File.read("#{ENV.fetch('APP_HOME', '.')}/app/views/reports/report_templates.zip")
end end
puts "Loaded report templates zip from #{template_zip_url_string}" puts "Loaded report templates zip from #{template_zip_url_string}"