]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of lib/redmine/scm/adapters/bazaar_adapter.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 9 Jul 2020 15:18:24 +0000 (15:18 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 9 Jul 2020 15:18:24 +0000 (15:18 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19872 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/bazaar_adapter.rb

index 016018bf64a9f2ed4bab004585d39cc378d1101d..90ba8a7bfc28fb863d0e673c1d50831630247316 100644 (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