Commit fc6a291a authored by HerrBerg's avatar HerrBerg

fix exclude wiki regex

the new regex allows importing repositories with repository name ending with wiki but still exclude gitlab wiki repositories
parent 05fca6bf
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment