1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

fix source indent of lib/redmine/scm/adapters/cvs_adapter.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20443 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-20 11:35:52 +00:00
parent 9f7065c3b7
commit f91b5bf3da

View File

@ -319,7 +319,8 @@ module Redmine
:revision => $1,
:identifier => nil,
:author => $2.strip
))
)
)
end
end
blame
@ -379,8 +380,10 @@ module Redmine
full_args.map do |e|
full_args_locale << scm_iconv(@path_encoding, 'UTF-8', e)
end
ret = shellout(
self.class.sq_bin + ' ' + full_args_locale.map { |e| shell_quote e.to_s }.join(' '),
ret =
shellout(
self.class.sq_bin + ' ' +
full_args_locale.map {|e| shell_quote e.to_s}.join(' '),
&block
)
if $? && $?.exitstatus != 0