Skip to content

Commit

Permalink
build: explicitly force .xz compression (old debuild picks gzip) (eth…
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Feb 18, 2019
1 parent 75a9314 commit c0b9c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c0b9c76

Please sign in to comment.