mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user