diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-04-29 12:32:38 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-04-29 12:32:38 -0400 |
commit | 13c7151c5d0a4144a42c7de2654147621a1b93a0 (patch) | |
tree | e41f4ecdc6407006549e41d32f732c81d3780f20 | |
parent | d979ed3a1e50f0d73f204076092cb8e4fa033c72 (diff) |
make: Add missing flag when generating GPG release signature.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 2fbcf26..d4b2a78 100644 --- a/Makefile.am +++ b/Makefile.am @@ -107,6 +107,6 @@ CLEANFILES = \ $(TESTS:tests/%.scm=%.log) publish: distcheck - gpg --sign --armor --yes haunt-$(VERSION).tar.gz && \ + gpg --sign --detach-sign --armor --yes haunt-$(VERSION).tar.gz && \ scp haunt-$(VERSION).tar.gz haunt-$(VERSION).tar.gz.asc \ publish@dthompson.us:/var/www/files/haunt/ |