summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-28 15:37:59 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-28 15:37:59 (EDT)
commitb6aaff30ce63262d965df48483d7f614c88c0967 (patch)
tree77932eb188123e0750665efaf482f9a77d58045b
parente3e4438a40a9c5d2f76bee5a524ec9d5a00b3d06 (diff)
Makefile.am: Make detached OpenPGP signatures
Fixes: $ gpg --verify prokit-2.0.0.tar.gz.asc prokit-2.0.0.tar.gz gpg: not a detached signature
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f085dab..ab46b52 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -217,7 +217,7 @@ release:
set -e; \
sigs=''; \
for f in $(DIST_ARCHIVES); do \
- gpg --local-user $(KEY) --armor --sign $${f}; \
+ gpg --local-user $(KEY) --armor --detach-sign $${f}; \
sigs="$${sigs} $${f}.asc"; \
done; \
ssh files@files.proteanos.com mkdir -p files/pub/$(PACKAGE); \