Might sign signing files (.sig.sig...), due to too large selection of files
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+# Script used to sign (almost) everything in the dist folder
+cd dist
+# File to signed
+# MEMO: -e: regexp, -v: not matched
+tobe_sig=$(ls | grep -e ".tar" -e ".zip" -v ".sig")
+for element in ${tobe_sig}
+do
+ echo "Signing" ${element}
+ gpg --detach-sign ${element}
+done