remove spaces inside {} of lib/redmine/scm/adapters/bazaar_adapter.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19872 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-07-09 15:18:24 +00:00
parent dcf3a07892
commit 15584c9071

View File

@@ -52,7 +52,7 @@ module Redmine
end
def scm_version_from_command_line
shellout("#{sq_bin} --version") { |io| io.read }.to_s
shellout("#{sq_bin} --version") {|io| io.read}.to_s
end
end
@@ -295,7 +295,7 @@ module Redmine
end
ret = shellout(
self.class.sq_bin + ' ' +
full_args_locale.map { |e| shell_quote e.to_s }.join(' '),
full_args_locale.map {|e| shell_quote e.to_s}.join(' '),
&block
)
if $? && $?.exitstatus != 0
@@ -314,7 +314,7 @@ module Redmine
end
ret = shellout(
self.class.sq_bin + ' ' +
full_args_locale.map { |e| shell_quote e.to_s }.join(' '),
full_args_locale.map {|e| shell_quote e.to_s}.join(' '),
&block
)
ret