diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-08-07 14:32:29 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-08-07 14:32:29 +0200 |
commit | 0706b4bab18007b615c6a504f28862b205b10e4b (patch) | |
tree | 1167fa3063c76e1b196b7381e919849e9579915c /foaf | |
parent | ae033eb973a31329574b32d56c9e3c8cf31b2dbc (diff) |
Use alternate stem for GPG signature (to play nice with Apache2 content negotiation).
Diffstat (limited to 'foaf')
-rwxr-xr-x | foaf/mkfoaf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/foaf/mkfoaf.sh b/foaf/mkfoaf.sh index 7ac9621..81d3bac 100755 --- a/foaf/mkfoaf.sh +++ b/foaf/mkfoaf.sh @@ -67,7 +67,7 @@ tidyfacebookfoaf() { foafsign() { inpath="$1" - outpath="$inpath.pgp" + outpath="${inpath}_sig.pgp" gpg -a -o- --detach-sign "$inpath" > "$outpath" } |