summaryrefslogtreecommitdiff
path: root/lib/find.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/find.rb')
-rw-r--r--lib/find.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/find.rb b/lib/find.rb
index a8dcea4f71..ce3e7068c3 100644
--- a/lib/find.rb
+++ b/lib/find.rb
@@ -9,9 +9,11 @@
module Find
def find(*path)
+p ["find", path]
while file = path.shift
catch(:prune) {
yield file
+p ["find", file]
if File.lstat(file).directory? then
d = Dir.open(file)
begin