From ae5381f2cc4a7b0f2cbb67d6cbbf57b10de1e307 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Aub=C3=A9?= Date: Tue, 7 Oct 2014 14:13:50 -0400 Subject: Update import.rake Output a message when a repo is skipped --- lib/tasks/gitlab/import.rake | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib') 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 -- cgit v1.2.1