Skip to content

Commit

Permalink
unpacker.eclass: fix unpack_gpkg with TAPE set
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/885719
Signed-off-by: Sam James <[email protected]>
Closes: gentoo#28603
Signed-off-by: Michał Górny <[email protected]>
  • Loading branch information
thesamesam authored and mgorny committed Dec 14, 2022
1 parent 7713a9f commit c55ca3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eclass/unpacker.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ unpack_gpkg() {
local dirname=${images[0]%/*}
mkdir -p "${dirname}" || die
tar -xOf "${gpkg}" "${images[0]}" | ${decomp:-cat} |
tar --no-same-owner -xC "${dirname}"
tar --no-same-owner -C "${dirname}" -xf -
assert "Unpacking ${gpkg} failed"
}

Expand Down

0 comments on commit c55ca3f

Please sign in to comment.