Fix permissions before moving extracted files.

This commit is contained in:
Markus Reiter 2023-02-19 19:28:21 +01:00
parent a222a5bbc8
commit eaca86b0a8
No known key found for this signature in database
GPG Key ID: 245293B51702655B

View File

@ -159,9 +159,8 @@ module UnpackStrategy
next
end
Directory.new(tmp_unpack_dir).extract(to: to, verbose: verbose)
FileUtils.chmod_R "+w", tmp_unpack_dir, force: true, verbose: verbose
Directory.new(tmp_unpack_dir).extract(to: to, verbose: verbose)
end
end