Merge pull request #139 from stigtsp/multiple-gpg-recipients

This commit is contained in:
Tim Byrne 2020-01-14 08:08:44 -06:00
commit 0b22220e3c
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12
1 changed files with 4 additions and 1 deletions

5
yadm
View File

@ -874,7 +874,10 @@ function encrypt() {
if [ "$GPG_KEY" = "ASK" ]; then
GPG_OPTS=("--no-default-recipient" "-e")
elif [ "$GPG_KEY" != "" ]; then
GPG_OPTS=("-e" "-r $GPG_KEY")
GPG_OPTS=("-e")
for key in $GPG_KEY; do
GPG_OPTS+=("-r $key")
done
else
GPG_OPTS=("-c")
fi