diff options
author | Robin Obůrka <r.oburka@gmail.com> | 2016-08-20 22:34:56 +0200 |
---|---|---|
committer | Robin Obůrka <r.oburka@gmail.com> | 2016-08-20 22:34:56 +0200 |
commit | f34177cecbea079c80ce16bb208d789b7f4f0794 (patch) | |
tree | f55fe47328bee62d3ab02b01a4ffce10793df6e4 | |
parent | Fix bug in tar usage (diff) | |
download | backuper-f34177cecbea079c80ce16bb208d789b7f4f0794.tar.xz |
Fix error in gpg recipients builder
-rw-r--r-- | backuper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backuper.sh b/backuper.sh index 775b38a..6ef9a8e 100644 --- a/backuper.sh +++ b/backuper.sh @@ -82,7 +82,7 @@ result_file() { compute_gpg_recipients() { GPG_RECIPIENTS_LIST="" for R in $GPG_RECIPIENTS; do - GPG_RECIPIENTS_LIST=" --recipient "$R"" + GPG_RECIPIENTS_LIST="$GPG_RECIPIENTS_LIST --recipient "$R"" done } |