From 275cc6c10d153b012fa74f1db17833021463611b Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Fri, 28 Jul 2023 17:57:55 +0100 Subject: [PATCH] Updated "make release" to sign using a specific key, and only do tar.gz files. --- autoconf/make/unreal.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/autoconf/make/unreal.mk b/autoconf/make/unreal.mk index fb0cef1..7fa3634 100644 --- a/autoconf/make/unreal.mk +++ b/autoconf/make/unreal.mk @@ -177,7 +177,5 @@ uninstall: fi release: dist - zcat $(package)-$(version).tar.gz | bzip2 > $(package)-$(version).tar.bz2 - -gpg --list-secret-keys 2>&1 | grep -Fq 'uid' && gpg -ab *.tar.gz && rename .asc .txt *.tar.gz.asc - -gpg --list-secret-keys 2>&1 | grep -Fq 'uid' && gpg -ab *.tar.bz2 && rename .asc .txt *.tar.bz2.asc + -gpg --list-secret-keys 2>&1 | grep -F 'uid' | grep -Fq "$(MAINTAINER)" && gpg -u "$(MAINTAINER)" -ab *.tar.gz && cp $(package)-$(version).tar.gz.asc $(package)-$(version).tar.gz.txt chmod 644 $(package)-$(version)*