Merge pull request #8158 from cirosantilli/basename-dirname-split
Merge File basename and direname into split
This commit is contained in:
commit
199029b842
1 changed files with 1 additions and 2 deletions
|
@ -20,8 +20,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 == '.'
|
||||
|
||||
puts "Processing #{repo_path}".yellow
|
||||
|
|
Loading…
Reference in a new issue