Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Jun 10, 2021
1 parent f481c2c commit 0eff297
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/childprocess.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ def new(*args)
when :macosx, :linux, :solaris, :bsd, :cygwin, :aix
Unix::PosixSpawnProcess.new(args)
when :windows
Windows::Process.new(args)
Unix::PosixSpawnProcess.new(args)
# Windows::Process.new(args)
else
raise Error, "unsupported platform #{platform_name.inspect}"
end
Expand Down

0 comments on commit 0eff297

Please sign in to comment.