Project

General

Profile

Patch #30827 » git_adapter.rb.patch

Pavel Rosický, 2019-02-18 10:03

View differences:

git_adapter.rb (working copy)
99 99
          @tags = []
100 100
          cmd_args = %w|tag|
101 101
          git_cmd(cmd_args) do |io|
102
            @tags = io.readlines.sort!.map{|t| t.strip}
102
            @tags = io.readlines.sort!.map{|t| scm_iconv(@path_encoding, 'UTF-8', t.strip)}
103 103
          end
104 104
          @tags
105 105
        rescue ScmCommandAborted
(1-1/4)