From: Simon McVittie Date: Fri, 25 Feb 2022 13:20:31 +0000 (+0000) Subject: CI: Fix unpack of documentation tarball X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=665e56653c55ebac70ef757cc9abb228f9b3e786;p=platform%2Fupstream%2Fdbus.git CI: Fix unpack of documentation tarball In dbus 1.12.x, this was a tar.gz archive, not a tar.xz archive. Fixes: 8d34987e "CI: Exercise maintainer-only documentation build" Signed-off-by: Simon McVittie --- diff --git a/tools/ci-build.sh b/tools/ci-build.sh index 28e6452..9e6c997 100755 --- a/tools/ci-build.sh +++ b/tools/ci-build.sh @@ -273,8 +273,8 @@ case "$ci_buildsys" in (*) # assume Ubuntu 18.04 'bionic', Debian 10 'buster' or newer - ${make} -C doc dbus-docs.tar.xz - tar -C $(pwd)/DESTDIR -xf doc/dbus-docs.tar.xz + ${make} -C doc dbus-docs.tar.gz + tar -C $(pwd)/DESTDIR -xf doc/dbus-docs.tar.gz ( cd DESTDIR/dbus-docs && find . -ls ) ;; esac