diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 11:24:23 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 11:24:23 (EDT) |
commit | c4ca9a02f89fcc332deebd90e1354157485a67e4 (patch) | |
tree | 45ac6e0ade086f1f8ba89e46b586f30f4d677b08 | |
parent | 6cbb95b36001754b3cb4063a4cbd9afc906345a2 (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 ee7d7a2..bda3faa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -191,11 +191,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)' |