Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check.rake « lfs « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 582b87337ae5397a309fbd64b2d556859bb3d50c (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

namespace :gitlab do
  namespace :lfs do
    desc 'GitLab | LFS | Check integrity of uploaded LFS objects'
    task check: :environment do
      Gitlab::Verify::RakeTask.run!(Gitlab::Verify::LfsObjects)
    end
  end
end