aboutsummaryrefslogtreecommitdiff
path: root/util/release
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2018-12-20 17:21:08 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-12-21 18:06:15 +0000
commit3b2305eed947538b1860c208a638b5a0268a4141 (patch)
treefcdb32f31156f4f7f7c07a07bc654a3835d54040 /util/release
parent35c8dcf9922328e9259226cd8d99219e96bb06ec (diff)
util/release: Use "gpg", not "gpg2" for creating signatures
It's the common name. Change-Id: Iafa793b961847b2c98282fd035ea96ddf6109012 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/30342 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/release')
-rwxr-xr-xutil/release/build-release4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/release/build-release b/util/release/build-release
index 35f197da8f..a08b405ba8 100755
--- a/util/release/build-release
+++ b/util/release/build-release
@@ -62,6 +62,6 @@ tar --sort=name --mtime="$tstamp" --owner=coreboot:1000 --group=coreboot:1000 --
tar --sort=name --mtime="$tstamp" --owner=coreboot:1000 --group=coreboot:1000 --exclude=*/.git --exclude=*/.gitignore -cvf - "coreboot-${VERSION_NAME}/3rdparty/blobs" "coreboot-${VERSION_NAME}/3rdparty/fsp" |xz -9 > "coreboot-blobs-${VERSION_NAME}.tar.xz"
if [ -n "${GPG_KEY_ID}" ]; then
- gpg2 --armor --local-user "$GPG_KEY_ID" --output "coreboot-${VERSION_NAME}.tar.xz.sig" --detach-sig "coreboot-${VERSION_NAME}.tar.xz"
- gpg2 --armor --local-user "$GPG_KEY_ID" --output "coreboot-blobs-${VERSION_NAME}.tar.xz.sig" --detach-sig "coreboot-blobs-${VERSION_NAME}.tar.xz"
+ gpg --armor --local-user "$GPG_KEY_ID" --output "coreboot-${VERSION_NAME}.tar.xz.sig" --detach-sig "coreboot-${VERSION_NAME}.tar.xz"
+ gpg --armor --local-user "$GPG_KEY_ID" --output "coreboot-blobs-${VERSION_NAME}.tar.xz.sig" --detach-sig "coreboot-blobs-${VERSION_NAME}.tar.xz"
fi