fix(install): ignore tarfile ownership values when installing as root (#4046)

This commit is contained in:
David Cantrell 2022-06-05 17:56:58 +01:00 committed by GitHub
parent 146976351e
commit 1a91510bed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ unpack() {
case "$archive" in
*.tar.gz)
flags=$(test -n "${VERBOSE-}" && echo "-xzvf" || echo "-xzf")
flags=$(test -n "${VERBOSE-}" && echo "-xzvof" || echo "-xzof")
${sudo} tar "${flags}" "${archive}" -C "${bin_dir}"
return 0
;;