summaryrefslogtreecommitdiff
path: root/lib/drb/extservm.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-02 07:30:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-02 07:30:35 +0000
commit5aad8206044f98b28bc303d5bd7d3e4f935e96ec (patch)
tree4873263f227dc109031fcfcc1db0a54cbf298c57 /lib/drb/extservm.rb
parent95ce90a87ed0a058386eea410aeac0aac2ee2dc8 (diff)
* io.c (pipe_open): erred program name should be reported by
exceptions, instead of the first argument. * process.c (rb_spawn): ditto. * process.c (proc_spawn_v): use first argument as program name. * win32/win32.c (rb_w32_aspawn): ditto. * win32/win32.c (CreateChild): search executable file if no program name given. * lib/drb/extservm.rb (invoke_service_command): use Process.spawn. [ruby-dev:23103] * lib/rdoc/ri/ri_display.rb (setup_pager): use IO.popen. [ruby-dev:23086], [ruby-dev:23103] * lib/rdoc/diagram.rb (convert_to_png): ditto. * lib/rdoc/generators/chm_generator.rb (compile_project): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/drb/extservm.rb')
-rw-r--r--lib/drb/extservm.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/drb/extservm.rb b/lib/drb/extservm.rb
index 50009dbae2..6367fe5e1c 100644
--- a/lib/drb/extservm.rb
+++ b/lib/drb/extservm.rb
@@ -84,11 +84,7 @@ module DRb
return if @servers.include?(name)
@servers[name] = false
end
- if RUBY_PLATFORM =~ /mswin32/
- system("cmd /c start /b #{command} #{DRb.uri} #{name}")
- else
- system("#{command} #{DRb.uri} #{name} &")
- end
+ Process.spawn("#{command} #{DRb.uri} #{name}")
end
end
end