aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-11-08 16:59:19 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-11-08 16:59:19 +0800
commitdf30ef5177ca2b50f50f60713890b8f45566a890 (patch)
tree23ca624c5e4624083b7cbc0509a10395ed8c6720 /internal
parent7e8ad6cad30bbe2dcb837528d1bc6cff4e6fe718 (diff)
downloadgo-tangerine-df30ef5177ca2b50f50f60713890b8f45566a890.tar
go-tangerine-df30ef5177ca2b50f50f60713890b8f45566a890.tar.gz
go-tangerine-df30ef5177ca2b50f50f60713890b8f45566a890.tar.bz2
go-tangerine-df30ef5177ca2b50f50f60713890b8f45566a890.tar.lz
go-tangerine-df30ef5177ca2b50f50f60713890b8f45566a890.tar.xz
go-tangerine-df30ef5177ca2b50f50f60713890b8f45566a890.tar.zst
go-tangerine-df30ef5177ca2b50f50f60713890b8f45566a890.zip
internal/build: call correct signer method
Diffstat (limited to 'internal')
-rw-r--r--internal/build/pgp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/build/pgp.go b/internal/build/pgp.go
index cc60d64fb..7938df51a 100644
--- a/internal/build/pgp.go
+++ b/internal/build/pgp.go
@@ -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)
}