internal/build: call correct signer method

This commit is contained in:
Péter Szilágyi
2016-11-08 10:59:19 +02:00
parent 7e8ad6cad3
commit df30ef5177

View File

@ -54,5 +54,5 @@ func PGPSignFile(input string, output string, pgpkey string) error {
defer out.Close() defer out.Close()
// Generate the signature and return // Generate the signature and return
return openpgp.ArmoredDetachSignText(out, keys[0], in, nil) return openpgp.ArmoredDetachSign(out, keys[0], in, nil)
} }