Commit e1123e08 authored by Robert Schilling's avatar Robert Schilling

Merge pull request #7988 from marcaube/patch-1

Import - Display message when skipping repo
parents b694bf6f ae5381f2
......@@ -27,7 +27,10 @@ namespace :gitlab do
group_name = nil if group_name == '.'
# Skip if group or user
next if namespaces.include?(name)
if namespaces.include?(name)
puts "Skipping #{project.name} due to namespace conflict with group or user".yellow
next
end
puts "Processing #{repo_path}".yellow
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment