summaryrefslogtreecommitdiff
path: root/lib/open3.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-23 13:52:19 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-23 13:52:19 +0000
commit3d4376d16777cb97ebd1d12e338462ef7311223e (patch)
tree71ef957dd9c0248a5d9d35ebc7481e5ec8163d95 /lib/open3.rb
parent616a75e7e3db6a6c343f292e19d5afd531a2dc00 (diff)
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463] * array.c (rb_ary_unshift_m): ditto. * lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass of StandardError class, not Exception class. [ruby-core:04429] * lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE. fixed: [ruby-core:04444] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/open3.rb')
-rw-r--r--lib/open3.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/open3.rb b/lib/open3.rb
index 407cd7662c..59db1a4cc5 100644
--- a/lib/open3.rb
+++ b/lib/open3.rb
@@ -35,7 +35,7 @@ module Open3
exec(*cmd)
}
- exit!
+ exit!(0)
}
pw[0].close