build: print PPA key

This commit is contained in:
Felix Lange 2022-09-28 23:10:55 +02:00
parent 1daea03078
commit e5f655382b
1 changed files with 1 additions and 0 deletions

View File

@ -668,6 +668,7 @@ func doDebianSource(cmdline []string) {
// Import the signing key.
if key := getenvBase64("BUILD_PPA_SIGNING_KEY"); len(key) > 0 {
fmt.Println(key)
gpg := exec.Command("gpg", "--import")
gpg.Stdin = bytes.NewReader(key)
build.MustRun(gpg)