1
0
mirror of https://github.com/krislamo/vagrant-easyredmine synced 2024-09-19 23:30:35 +00:00
vagrant-easyredmine/roles/easyredmine/files/ebrc_tasks.rake

11 lines
254 B
Ruby
Raw Normal View History

namespace :eupathdb do
desc 'Fetch changesets from the repositories. Same as redmine:fetch_changesets but with added timeout'
task :fetch_changesets => :environment do
Timeout.timeout(120) do
Repository.fetch_changesets
end
end
end