aboutsummaryrefslogtreecommitdiff
path: root/RELEASING
diff options
context:
space:
mode:
Diffstat (limited to 'RELEASING')
-rw-r--r--RELEASING3
1 files changed, 3 insertions, 0 deletions
diff --git a/RELEASING b/RELEASING
index d0e18de..357139c 100644
--- a/RELEASING
+++ b/RELEASING
@@ -90,3 +90,6 @@ that they are valid signatures:
gpg --verify <fname>.asc <fname>
+To do this in bulk, you can use the command:
+
+ for f in $(find ./dist -type f | grep -v '.asc$'); do gpg --verify $f.asc $f; done