build: skip go clean on PPA, messes with the module trick

This commit is contained in:
Péter Szilágyi
2019-11-21 18:18:59 +02:00
parent b6d4f6b66e
commit 5b558ad936
4 changed files with 6 additions and 22 deletions

View File

@ -530,7 +530,7 @@ func doDebianSource(cmdline []string) {
log.Fatalf("Failed to copy Go module dependencies: %v", err)
}
// Run the packaging and upload to the PPA
debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d", "-Zxz")
debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d", "-Zxz", "-nc")
debuild.Dir = pkgdir
build.MustRun(debuild)