]> source.dussan.org Git - redmine.git/commitdiff
code clean up GitAdapter
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 4 Apr 2019 07:15:32 +0000 (07:15 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 4 Apr 2019 07:15:32 +0000 (07:15 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18037 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/git_adapter.rb

index e0c5d4763c8ffcb2eba12032b9f1bcb3f6a34ea0..07741aac2ee80b7499ac5b746f9dc2afb6449755 100644 (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