mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
11 lines
252 B
Ruby
11 lines
252 B
Ruby
# 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
|