Merge pull request #5811 from JuPlutonic/extentOsLinux_tar.rb

Fix issue extracting tar files while root on Linux
This commit is contained in:
Shaun Jackman 2019-03-01 07:47:15 -08:00 committed by GitHub
commit c3c4b6e840
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ module UnpackStrategy
end
system_command! "tar",
args: ["xf", tar_path, "-C", unpack_dir],
args: ["xof", tar_path, "-C", unpack_dir],
verbose: verbose
end
end