build: fix PPA failure due to updated debsrc

This commit is contained in:
Péter Szilágyi 2021-03-04 13:04:50 +02:00
parent ba999105ef
commit de61da99c4
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D

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