Skip to content

Commit c0b9c76

Browse files
authored
build: explicitly force .xz compression (old debuild picks gzip) (#19118)
1 parent 75a9314 commit c0b9c76

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)