mirror of
https://github.com/krislamo/vagrant-easyredmine
synced 2024-11-12 23:50:34 +00:00
11 lines
254 B
Ruby
11 lines
254 B
Ruby
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
|