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
1 changed files with 1 additions and 1 deletions

View File

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