Browse Source

code clean up GitAdapter

git-svn-id: http://svn.redmine.org/redmine/trunk@18037 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Toshi MARUYAMA 5 years ago
parent
commit
3d70e1079a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lib/redmine/scm/adapters/git_adapter.rb

+ 2
- 2
lib/redmine/scm/adapters/git_adapter.rb View File

@@ -137,8 +137,8 @@ module Redmine
p = scm_iconv(@path_encoding, 'UTF-8', path)
entries = Entries.new
cmd_args = %w|ls-tree -l|
cmd_args << "HEAD:#{p}" if identifier.nil?
cmd_args << "#{identifier}:#{p}" if identifier
identifier = 'HEAD' if identifier.nil?
cmd_args << "#{identifier}:#{p}"
git_cmd(cmd_args) do |io|
io.each_line do |line|
e = line.chomp.to_s

Loading…
Cancel
Save