Actions
Bug #6715
closedDir.mktmpdir fails if you delete it yourself
Bug #6715:
Dir.mktmpdir fails if you delete it yourself
Description
Dir.mktmpdir when given a block will call FileUtil.remove_entry_secure in the ensure section. If the contents of the block happens to move/delete/modify that folder, then that will fail with Errno::ENOENT. I believe the correct behavior in this case should be to successfully return, since the folder is clearly gone in some way.
Actions