diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-21 13:56:07 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-21 13:56:07 (EDT) |
commit | e0029177274b0265f6bb17f4b9897aa4a47f5077 (patch) | |
tree | 8201ea2175ce186346d303c78c135e41cb937cee | |
parent | e00306551ce9fa1ed709eedd581c98dd29481b28 (diff) |
Makefile.am: Upload .asc files
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 6acc869..d792124 100644 --- a/Makefile.am +++ b/Makefile.am @@ -140,11 +140,14 @@ release: md5sum $(DIST_ARCHIVES) >MD5SUMS sha256sum $(DIST_ARCHIVES) >SHA256SUMS set -e; \ + sigs=''; \ for f in $(DIST_ARCHIVES); do \ gpg --armor --sign $${f}; \ - done - ssh files@files.proteanos.com mkdir -p files/pub/$(PACKAGE) - rsync -az --progress --stats $(DIST_ARCHIVES) MD5SUMS SHA256SUMS \ + sigs="$${sigs} $${f}.asc"; \ + done; \ + ssh files@files.proteanos.com mkdir -p files/pub/$(PACKAGE); \ + rsync -az --progress --stats $(DIST_ARCHIVES) ${sigs} \ + MD5SUMS SHA256SUMS \ files@files.proteanos.com:files/pub/$(PACKAGE)/$(VERSION)/ '$(srcdir)/scripts/announce-release.sh' \ $(PACKAGE) $(VERSION) '$(PACKAGE_NAME)' |