Merge pull request #3241 from karalabe/fix-pgp-signer

internal/build: call correct signer method
This commit is contained in:
Péter Szilágyi 2016-11-08 11:04:53 +02:00 committed by GitHub
commit 6707f70b4a
1 changed files with 1 additions and 1 deletions

View File

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