From ad21714bfb736bdb51454ef6cec00d098d73ac5c Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 7 May 2018 16:46:06 +0200 Subject: [PATCH] Generate ascii-armored signatures instead of binary(?) ones --- build-yunohost | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-yunohost b/build-yunohost index 712e1f1..0fc7b68 100755 --- a/build-yunohost +++ b/build-yunohost @@ -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 }