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

check.rake « uploads « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2be2ec7f9c9adea7a986c19f99e305947326e18d (plain)
1
2
3
4
5
6
7
8
namespace :gitlab do
  namespace :uploads do
    desc 'GitLab | Uploads | Check integrity of uploaded files'
    task check: :environment do
      Gitlab::Verify::RakeTask.run!(Gitlab::Verify::Uploads)
    end
  end
end