Skip to content

Commit

Permalink
CI: fix unpacking .tar.zstd archive on fedora
Browse files Browse the repository at this point in the history
2.11 uses zstd compression for its deb packages.
  • Loading branch information
johningve committed Nov 28, 2023
1 parent 6069b0b commit 100fb89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function install_www_deb {
pushd $TMP_DIR || exit $?
wget -nv "$@" || exit $?
ar x ./*deb || exit $?
bsdtar -xf data.tar.*z -C / || exit $?
bsdtar -xf data.tar.* -C / || exit $?
ldconfig || exit $?
popd || exit $?
rm -r $TMP_DIR || exit $?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function install_www_deb {
pushd $TMP_DIR || exit $?
wget -nv "$@" || exit $?
ar x ./*deb || exit $?
bsdtar -xf data.tar.*z -C / || exit $?
bsdtar -xf data.tar.* -C / || exit $?
ldconfig || exit $?
popd || exit $?
rm -r $TMP_DIR || exit $?
Expand Down

0 comments on commit 100fb89

Please sign in to comment.