Generate ascii-armored signatures instead of binary(?) ones

This commit is contained in:
Alexandre Aubin 2018-05-07 16:46:06 +02:00 committed by GitHub
parent 7a6ec0b210
commit ad21714bfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,7 +75,7 @@ function sign
# Remove previous signature to prevent gpg to ask about overwriting
rm -f $NAME.sig
sudo gpg --output $NAME.sig --detach-sig $NAME
sudo gpg --armor --output $NAME.sig --detach-sig $NAME
sha256sum $NAME > $NAME.sum
}