diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-09 15:18:24 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-07-09 15:18:24 +0000 |
commit | 15584c9071af4cd7c1a98ef62a98642373aafe49 (patch) | |
tree | 51adbd7d64b2d59e145eba9aad0d8a4c700a2c34 /lib/redmine/scm | |
parent | dcf3a078926b07fb17e30e95188a8abc10e2fb6e (diff) | |
download | redmine-15584c9071af4cd7c1a98ef62a98642373aafe49.tar.gz redmine-15584c9071af4cd7c1a98ef62a98642373aafe49.zip |
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
Diffstat (limited to 'lib/redmine/scm')
-rw-r--r-- | lib/redmine/scm/adapters/bazaar_adapter.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/redmine/scm/adapters/bazaar_adapter.rb b/lib/redmine/scm/adapters/bazaar_adapter.rb index 016018bf6..90ba8a7bf 100644 --- a/lib/redmine/scm/adapters/bazaar_adapter.rb +++ b/lib/redmine/scm/adapters/bazaar_adapter.rb @@ -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 |