aboutsummaryrefslogtreecommitdiffstats
path: root/lib/find.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-20 04:48:55 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-20 04:48:55 +0000
commit2d956bea23588a9a16a0d42149d8544e9a049689 (patch)
treee07c42b1bd72aac6f2362348949ebe254e76d287 /lib/find.rb
parent3ef1b8086e962830a7672b02449d48fb3cabc001 (diff)
downloadruby-2d956bea23588a9a16a0d42149d8544e9a049689.tar.gz
* lib/find.rb: should raise ENOENT if root entry does not exist,
without opening it. [ruby-dev:28345] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/find.rb')
-rw-r--r--lib/find.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/find.rb b/lib/find.rb
index b2e811e614..06ac9e2c0c 100644
--- a/lib/find.rb
+++ b/lib/find.rb
@@ -33,7 +33,7 @@ module Find
# See the +Find+ module documentation for an example.
#
def find(*paths) # :yield: path
- paths.collect!{|d| open(d){}; d.dup}
+ paths.collect!{|d| raise Errno::ENOENT unless File.exist?(d); d.dup}
while file = paths.shift
catch(:prune) do
yield file.dup.taint