aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/fileutils.rb2
-rw-r--r--lib/find.rb1
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/fileutils.rb b/lib/fileutils.rb
index 2d9692c519..646cfe07d3 100644
--- a/lib/fileutils.rb
+++ b/lib/fileutils.rb
@@ -274,7 +274,7 @@ module FileUtils
# <b><tt>ln(old, new, options = {})</tt></b>
#
# Creates a hard link +new+ which points to +old+.
- # If +new+ already exists and it is a directory, creates a symbolic link +new/old+.
+ # If +new+ already exists and it is a directory, creates a link +new/old+.
# If +new+ already exists and it is not a directory, raises Errno::EEXIST.
# But if :force option is set, overwrite +new+.
#
diff --git a/lib/find.rb b/lib/find.rb
index 08a3908c5b..b2e811e614 100644
--- a/lib/find.rb
+++ b/lib/find.rb
@@ -37,6 +37,7 @@ module Find
while file = paths.shift
catch(:prune) do
yield file.dup.taint
+ next unless File.exist? file
begin
if File.lstat(file).directory? then
d = Dir.open(file)