8 lines
246 B
Ruby
8 lines
246 B
Ruby
|
|
# 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
|