Merge #1350: Add compression algo flag to dpkg command for arch build

953a85b94321093d29926283df951c3f4f00d2aa Add compression algo flag to dpkg command for arch build (edouardparis)

Pull request description:

  Arch package failed to be extracted during pacman update because of the default zstd algo

ACKs for top commit:
  edouardparis:
    Self-ACK 953a85b94321093d29926283df951c3f4f00d2aa

Tree-SHA512: f5c0885981c5f60e291614fae8f8942b243059bc3c98c2fd313eb8f30a99d4eb832cde1e63e0206e0f71ccb637a0ddb3426283abb8e56231a5eadc65f8775309
This commit is contained in:
edouardparis 2024-11-05 10:33:42 +01:00
commit 84a370e339
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F

View File

@ -47,7 +47,7 @@ TARGET_DIR="$BUILD_DIR" ./contrib/reproducible/docker/docker-build.sh
cp "$BUILD_DIR/release/lianad" "$BUILD_DIR/release/liana-cli" "$BUILD_DIR/gui/release/liana-gui" ../README.md ./package/usr/bin/
DIRNAME="liana_$VERSION-1_amd64"
mv ./package "$DIRNAME"
dpkg-deb --build "$DIRNAME"
dpkg-deb -Zxz --build "$DIRNAME"
mv "$DIRNAME.deb" "$RELEASE_DIR"
)