Skip to content

Commit

Permalink
fixing directory crawling so it actually... crawls... (removed comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
bglusman committed Jan 25, 2012
1 parent 2cdb10d commit f74ebf1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/outlaw/enforcement.rb
Expand Up @@ -11,7 +11,6 @@ def process_directory(path)
Dir.foreach(path) do |entry|
next if entry == '.' or entry == '..'
if File.directory?("#{path}/#{entry}")
# Dir.open(path + entry)
process_directory("#{path}/#{entry}")
else
handle("#{path}/#{entry}")
Expand Down

0 comments on commit f74ebf1

Please sign in to comment.