cc-os/plugins/os-vault/eval/fixture/project/Rakefile

8 lines
246 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
desc "Deliver the current month's reports for all clients"
task :deliver do
bucket = "reportgen-staging"
sh "ruby bin/reportgen deliver --client all --month #{Time.now.strftime('%Y-%m')} --bucket #{bucket}"
end