* 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
Родитель 93db1877cf
Коммит cd74de7314
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -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?.

Просмотреть файл

@ -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