From 40792f8bc4d88ba365532f79cbdfb8dbbe507ffc Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 22 Apr 2011 10:08:52 +0200 Subject: script/librelease: use a GPG_KEYID variable to hold the signing key metze --- script/librelease.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'script/librelease.sh') diff --git a/script/librelease.sh b/script/librelease.sh index 666c392367..70048e9203 100755 --- a/script/librelease.sh +++ b/script/librelease.sh @@ -2,6 +2,7 @@ # make a release of a Samba library GPG_USER='Samba Library Distribution Key ' +GPG_KEYID='13084025' if [ ! -d ".git" ]; then echo "Run this script from the top-level directory in the" @@ -39,7 +40,7 @@ release_lib() { tagname=$(basename $tarname .tar | sed s/[\.]/-/g) echo "tagging as $tagname" - git tag -u 13084025 -s "$tagname" -m "$lib: tag release $tagname" + git tag -u $GPG_KEYID -s "$tagname" -m "$lib: tag release $tagname" echo "signing" rm -f "$tarname.asc" -- cgit