Skip to content

Commit 92f73cd

Browse files
karalabedshulyak
authored andcommitted
build: explicitly force .xz compression (old debuild picks gzip) (ethereum#19118)
(cherry picked from commit c0b9c76)
1 parent ec8c593 commit 92f73cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/ci.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ func doDebianSource(cmdline []string) {
507507
for _, distro := range debDistros {
508508
meta := newDebMetadata(distro, *signer, env, now, pkg.Name, pkg.Version, pkg.Executables)
509509
pkgdir := stageDebianSource(*workdir, meta)
510-
debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d")
510+
debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d", "-Zxz")
511511
debuild.Dir = pkgdir
512512
build.MustRun(debuild)
513513

0 commit comments

Comments
 (0)