diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-10 21:07:32 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-10 21:07:32 (EDT) |
commit | 1707e9424f386b457394c9dd0e5de654d68233aa (patch) | |
tree | 435ba3f415c677f57291952bd35f11a286282076 | |
parent | ec8b1f28fbe914a298a4a2bf18fcd6486c04a1ed (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 4d1a358..e470d9e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -149,11 +149,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)' |