diff options
author | Marc Aubé <marcaube@users.noreply.github.com> | 2014-10-07 14:13:50 -0400 |
---|---|---|
committer | Marc Aubé <marcaube@users.noreply.github.com> | 2014-10-07 14:13:50 -0400 |
commit | ae5381f2cc4a7b0f2cbb67d6cbbf57b10de1e307 (patch) | |
tree | 1ebead2ba803528372c397eaebac4499b0ddce9e /lib | |
parent | e95a8e15007518761f9c95d1aca3f94b2d8946d3 (diff) | |
download | gitlab-ce-ae5381f2cc4a7b0f2cbb67d6cbbf57b10de1e307.tar.gz |
Update import.rake
Output a message when a repo is skipped
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/gitlab/import.rake | 5 |
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 |