aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-02-18 18:12:26 +0800
committerGitHub <noreply@github.com>2019-02-18 18:12:26 +0800
commitc0b9c763bb1572c202a60b82e7dcdc48dc3c280a (patch)
treec09ee2b1480d7f15557249a3b79bdb0ac39e2347
parent75a931470ee006623f7f172d2a50e7723ca26187 (diff)
downloadgo-tangerine-c0b9c763bb1572c202a60b82e7dcdc48dc3c280a.tar
go-tangerine-c0b9c763bb1572c202a60b82e7dcdc48dc3c280a.tar.gz
go-tangerine-c0b9c763bb1572c202a60b82e7dcdc48dc3c280a.tar.bz2
go-tangerine-c0b9c763bb1572c202a60b82e7dcdc48dc3c280a.tar.lz
go-tangerine-c0b9c763bb1572c202a60b82e7dcdc48dc3c280a.tar.xz
go-tangerine-c0b9c763bb1572c202a60b82e7dcdc48dc3c280a.tar.zst
go-tangerine-c0b9c763bb1572c202a60b82e7dcdc48dc3c280a.zip
build: explicitly force .xz compression (old debuild picks gzip) (#19118)
-rw-r--r--build/ci.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go
index 11fa759da..4ee76ced5 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -507,7 +507,7 @@ func doDebianSource(cmdline []string) {
for _, distro := range debDistros {
meta := newDebMetadata(distro, *signer, env, now, pkg.Name, pkg.Version, pkg.Executables)
pkgdir := stageDebianSource(*workdir, meta)
- debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d")
+ debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d", "-Zxz")
debuild.Dir = pkgdir
build.MustRun(debuild)