Commit 9be12dd9 authored by Ciro Santilli's avatar Ciro Santilli

Merge File basename and direname into split

Faster because only does one split in that case.
parent 47064ea5
......@@ -22,8 +22,7 @@ namespace :gitlab do
repo_path[0..git_base_path.length] = ''
path = repo_path.sub(/\.git$/, '')
name = File.basename path
group_name = File.dirname path
group_name, name = File.split(path)
group_name = nil if group_name == '.'
# Skip if group or user
......
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