]> andersk Git - gssapi-openssh.git/blob - bundle/scripts/sign-bundle
o Add bundle signing script
[gssapi-openssh.git] / bundle / scripts / sign-bundle
1 #!/bin/sh
2 #
3
4 source ./scripts/version.sh
5
6 NAME="gsi_openssh_bundle-$VERSION-src.tar.gz"
7
8 #
9 # sign the bundle
10 #
11
12 if [ -f $NAME ]; then
13     echo "Signing bundle..."
14     /usr/bin/gpg --armor --output $NAME.asc --detach-sig $NAME
15     /usr/bin/md5sum $NAME > $NAME.md5
16 fi
This page took 0.038657 seconds and 5 git commands to generate.