fix exclude wiki regex

the new regex allows importing repositories with repository name ending with wiki but still exclude gitlab wiki repositories
This commit is contained in:
HerrBerg
2014-10-13 16:26:35 +02:00
parent 05fca6bfc2
commit fc6a291af3
+1 -1
View File
@@ -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