1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/net/fileutils.rb: rm_r should raise Errno::ENOENT if file not exist. [ruby-core:958] Thanks Johan Holmberg.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2003-04-15 10:28:04 +00:00
parent 93db1877cf
commit cd74de7314
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Apr 15 19:35:08 2003 Minero Aoki <aamine@loveruby.net>
* lib/net/fileutils.rb: rm_r should raise Errno::ENOENT if file
does not exist ([ruby-core:958]). Thanks Johan Holmberg.
Tue Apr 15 19:12:21 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* struct.c (rb_struct_hash): new methods Struct#hash, Struct#eql?.

View file

@ -520,6 +520,7 @@ module FileUtils
st = File.lstat(fname)
rescue
next if force
raise
end
if st.symlink? then remove_file fname, force
elsif st.directory? then remove_dir fname, force