Skip to content
Snippets Groups Projects
Commit 506309e1 authored by Donny Kurnia's avatar Donny Kurnia
Browse files

Using empty_repo? instead

Display message if repository is empty
parent 59d91729
No related branches found
No related tags found
3 merge requests!3014Fix 4.1 Installation Doc wording,!2983Fixed typo in gitlab.yml.example,!2803Improve gitlab:check. Fix 2776
Loading
Loading
@@ -778,9 +778,11 @@ namespace :gitlab do
}
 
Project.find_each(batch_size: 100) do |project|
if project.repository
print "#{project.name_with_namespace.yellow} ... "
print "#{project.name_with_namespace.yellow} ... "
 
if project.empty_repo?
puts "repository is empty".magenta
else
correct_options = options.map do |name, value|
run("git --git-dir=\"#{project.repository.path_to_repo}\" config --get #{name}").try(:chomp) == value
end
Loading
Loading
@@ -821,8 +823,11 @@ namespace :gitlab do
puts ""
 
Project.find_each(batch_size: 100) do |project|
if project.repository
print "#{project.name_with_namespace.yellow} ... "
print "#{project.name_with_namespace.yellow} ... "
if project.empty_repo?
puts "repository is empty".magenta
else
project_hook_file = File.join(project.repository.path_to_repo, "hooks", hook_file)
 
unless File.exists?(project_hook_file)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment