Skip to content

Commit

Permalink
quote pathnames in the server's command line for space contained
Browse files Browse the repository at this point in the history
directory names. Thanks, arton. [ruby-dev:28386]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
seki committed Feb 24, 2006
1 parent 6f43cc1 commit a2bd4d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Fri Feb 24 20:21:38 2006 Masatoshi SEKI <[email protected]>

* test/drb/drbtest.rb (add_service_command): quote pathnames in the
server's command line for space contained directory names.
Thanks, arton. [ruby-dev:28386]

Fri Feb 24 12:10:07 2006 NAKAMURA Usaku <[email protected]>

* instruby.rb: install *.exe.manifest and *.dll.manifest if exist.
Expand Down
2 changes: 1 addition & 1 deletion test/drb/drbtest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class DRbService
@@ruby += " -d" if $DEBUG
def self.add_service_command(nm)
dir = File.dirname(File.expand_path(__FILE__))
DRb::ExtServManager.command[nm] = "#{@@ruby} #{dir}/#{nm}"
DRb::ExtServManager.command[nm] = "\"#{@@ruby}\" \"#{dir}/#{nm}\""
end

%w(ut_drb.rb ut_array.rb ut_port.rb ut_large.rb ut_safe1.rb ut_eval.rb).each do |nm|
Expand Down

0 comments on commit a2bd4d5

Please sign in to comment.