aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/releasekey/templates/sign_checksums
blob: 28ea787109f6eb237212861a65bef501219308be (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if [ $# -lt 1 ]; then
	echo "Usage: $0 <directory>"
fi

directory=$1
cd "$directory"
for chksum in *.md5 *.sha1; do
	gpg --homedir "<%= keydir %>" --yes --sign "$chksum"
done