atomic_write rescue also Errno::EACCES

atomic_write rescue also Errno::EACCES on changing file permission. It could be raised with some type of filesystem
This commit is contained in:
Roberto Zanon 2014-10-10 14:24:35 +02:00
parent 64e64c6f04
commit 4d59832f29
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