From 77401c3da439b84b200cf848ddeeb8bf5f7dca9f Mon Sep 17 00:00:00 2001 From: brent s Date: Thu, 30 Jun 2016 03:11:08 -0400 Subject: [PATCH] updating with instructions on finding your public key --- _bin/new.package.sh | 3 +++ _bin/sign.pkg.sh | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/_bin/new.package.sh b/_bin/new.package.sh index ce785a7..1c6fd7e 100755 --- a/_bin/new.package.sh +++ b/_bin/new.package.sh @@ -4,6 +4,9 @@ set -e ## SETTINGS ## +# You can get a list of your private identities with gpg -K. +# You can get the exact string with: +# - gpg -K --fingerprint --with-colons [] | egrep '^fpr:' | cut -f10 -d":" GPGKEY='748231EBCBD808A14F5E85D28C004C2F93481F6B' # https://wiki.archlinux.org/index.php/PKGBUILD#validpgpkeys MAINTNAME='brent s. ' PKGBUILD_DIR='/opt/dev/arch' diff --git a/_bin/sign.pkg.sh b/_bin/sign.pkg.sh index 8df5d75..663c79e 100755 --- a/_bin/sign.pkg.sh +++ b/_bin/sign.pkg.sh @@ -1,7 +1,9 @@ #!/bin/bash - +# You can get a list of your private identities with gpg -K. +# You can get the exact string with: +# - gpg -K --fingerprint --with-colons [] | egrep '^fpr:' | cut -f10 -d":" GPGKEY='748231EBCBD808A14F5E85D28C004C2F93481F6B' PKGBUILD_DIR='/opt/dev/arch'