1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #17230 from robertoz-01/master

atomic_write rescue also Errno::EACCES
This commit is contained in:
Rafael Mendonça França 2014-10-13 10:52:37 -03:00
commit 664a0fa9cf

View file

@ -40,7 +40,7 @@ class File
chown(old_stat.uid, old_stat.gid, file_name) chown(old_stat.uid, old_stat.gid, file_name)
# This operation will affect filesystem ACL's # This operation will affect filesystem ACL's
chmod(old_stat.mode, file_name) chmod(old_stat.mode, file_name)
rescue Errno::EPERM rescue Errno::EPERM, Errno::EACCES
# Changing file ownership failed, moving on. # Changing file ownership failed, moving on.
end end
end end