diff options
author | Andrew White <pixeltrix@users.noreply.github.com> | 2017-03-30 06:26:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-30 06:26:25 +0100 |
commit | 51aa5b04c6e6f0b76bf86dbf84ad1e8744569aa0 (patch) | |
tree | 76c1f03aa5c16c65363c30e2a65aa44925bf9719 /railties/lib | |
parent | d5a2e8baa924ba6194ad4e6ae118b4d1ca19c342 (diff) | |
parent | ad44d7a054f3897154d5c275ddecade4032d0d54 (diff) | |
download | rails-51aa5b04c6e6f0b76bf86dbf84ad1e8744569aa0.tar.gz rails-51aa5b04c6e6f0b76bf86dbf84ad1e8744569aa0.tar.bz2 rails-51aa5b04c6e6f0b76bf86dbf84ad1e8744569aa0.zip |
Merge pull request #28417 from schneems/schneems/symlink-failures
Raise when using a bad symlink
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/paths.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/railties/lib/rails/paths.rb b/railties/lib/rails/paths.rb index af3be10a31..6bdb673215 100644 --- a/railties/lib/rails/paths.rb +++ b/railties/lib/rails/paths.rb @@ -205,7 +205,14 @@ module Rails # Returns all expanded paths but only if they exist in the filesystem. def existent - expanded.select { |f| File.exist?(f) } + expanded.select do |f| + does_exist = File.exist?(f) + + if !does_exist && File.symlink?(f) + raise "File #{f.inspect} is a symlink that does not point to a valid file" + end + does_exist + end end def existent_directories |