diff options
author | HerrBerg <HerrBerg@users.noreply.github.com> | 2014-10-13 16:26:35 +0200 |
---|---|---|
committer | HerrBerg <HerrBerg@users.noreply.github.com> | 2014-10-13 16:26:35 +0200 |
commit | fc6a291af3fb849ea590481d7df359fe37798458 (patch) | |
tree | a5e95cfae917d87b6122d9a116f4774f3f4f756d /lib/tasks | |
parent | 05fca6bfc2d045e7e144baec28a6596e618ecb4b (diff) | |
download | gitlab-ce-fc6a291af3fb849ea590481d7df359fe37798458.tar.gz |
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')
-rw-r--r-- | lib/tasks/gitlab/import.rake | 2 |
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 |