Browse Source

Make signature ASCII armored

 + It's better for portability to output ASCII armored signature. It's also
 advised by the Apache Release Signing Guide, availaible here.
 http://www.apache.org/dev/release-signing.html#signing-basics
 Furthermore, even if ASCII armored output is much bigger (more than twice), we
 speak of a few hundred Bytes.
Leo 9 years ago
parent
commit
0161a96d23
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sign-dist.sh

+ 1 - 1
sign-dist.sh

@@ -17,6 +17,6 @@ do
   sha256sum ${element} > ${element}.sha256
 
   echo "Signing" ${element}
-  gpg2 --detach-sign ${element}
+  gpg2 --armor --detach-sign ${element}
 done