internal/build: call correct signer method

parent 7e8ad6ca
...@@ -54,5 +54,5 @@ func PGPSignFile(input string, output string, pgpkey string) error { ...@@ -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)
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment