diff --git a/activesupport/lib/active_support/file_evented_update_checker.rb b/activesupport/lib/active_support/file_evented_update_checker.rb index 51c8cf5690..d63c8e2438 100644 --- a/activesupport/lib/active_support/file_evented_update_checker.rb +++ b/activesupport/lib/active_support/file_evented_update_checker.rb @@ -107,9 +107,7 @@ def longest_common_subpath(paths) lcsp = Pathname.new(paths[0]) paths[1..-1].each do |path| - loop do - break if lcsp.ascendant_of?(path) - + until lcsp.ascendant_of?(path) if lcsp.root? # If we get here a root directory is not an ascendant of path. # This may happen if there are paths in different drives on