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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMarc Aubé <marcaube@users.noreply.github.com>2014-10-07 22:13:50 +0400
committerMarc Aubé <marcaube@users.noreply.github.com>2014-10-07 22:13:50 +0400
commitae5381f2cc4a7b0f2cbb67d6cbbf57b10de1e307 (patch)
tree1ebead2ba803528372c397eaebac4499b0ddce9e /lib
parente95a8e15007518761f9c95d1aca3f94b2d8946d3 (diff)
Update import.rake
Output a message when a repo is skipped
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/gitlab/import.rake5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/import.rake b/lib/tasks/gitlab/import.rake
index cbfa736c84c..b6ed874e11a 100644
--- a/lib/tasks/gitlab/import.rake
+++ b/lib/tasks/gitlab/import.rake
@@ -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