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
diff options
context:
space:
mode:
authorHerrBerg <HerrBerg@users.noreply.github.com>2014-10-13 18:26:35 +0400
committerHerrBerg <HerrBerg@users.noreply.github.com>2014-10-13 18:26:35 +0400
commitfc6a291af3fb849ea590481d7df359fe37798458 (patch)
treea5e95cfae917d87b6122d9a116f4774f3f4f756d /lib/tasks/gitlab/import.rake
parent05fca6bfc2d045e7e144baec28a6596e618ecb4b (diff)
fix exclude wiki regex
the new regex allows importing repositories with repository name ending with wiki but still exclude gitlab wiki repositories
Diffstat (limited to 'lib/tasks/gitlab/import.rake')
-rw-r--r--lib/tasks/gitlab/import.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/import.rake b/lib/tasks/gitlab/import.rake
index b6ed874e11a..159568f2883 100644
--- a/lib/tasks/gitlab/import.rake
+++ b/lib/tasks/gitlab/import.rake
@@ -34,7 +34,7 @@ namespace :gitlab do
puts "Processing #{repo_path}".yellow
- if path =~ /.wiki\Z/
+ if path =~ /\.wiki\Z/
puts " * Skipping wiki repo"
next
end