From 8094b100cca467fe32a58e02a7ffe43ce26061b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Thu, 26 Oct 2023 18:03:38 +0200 Subject: [PATCH] Always create xz-compressed Debian packages --- utils/wp-cli-updatedeb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/wp-cli-updatedeb.sh b/utils/wp-cli-updatedeb.sh index d65266c9..9b1ab9d5 100755 --- a/utils/wp-cli-updatedeb.sh +++ b/utils/wp-cli-updatedeb.sh @@ -108,7 +108,7 @@ popd # build package in the current diretory WPCLI_PKG="${PWD}/php-wpcli_${WPCLI_VER}_all.deb" -fakeroot dpkg-deb --build "$DIR" "$WPCLI_PKG" || die 8 "Packaging failed" +fakeroot dpkg-deb -Zxz --build "$DIR" "$WPCLI_PKG" || die 8 "Packaging failed" # check package - not critical lintian --display-info --display-experimental --pedantic --show-overrides php-wpcli_*_all.deb || true