build: don't upload buildinfo (#1484)

This commit is contained in:
Rafael Matias
2019-06-14 14:24:12 +02:00
committed by GitHub
parent 99db027993
commit fce3e45f2b

View File

@ -435,13 +435,12 @@ func doDebianSource(cmdline []string) {
source = filepath.Join(*workdir, basename+".tar.xz")
dsc = filepath.Join(*workdir, basename+".dsc")
changes = filepath.Join(*workdir, basename+"_source.changes")
buildinfo = filepath.Join(*workdir, basename+"_source.buildinfo")
)
if *signer != "" {
build.MustRunCommand("debsign", changes)
}
if *upload != "" {
ppaUpload(*workdir, *upload, *sshUser, []string{source, dsc, changes, buildinfo})
ppaUpload(*workdir, *upload, *sshUser, []string{source, dsc, changes})
}
}
}