aboutsummaryrefslogtreecommitdiffstats
path: root/backuper.sh
diff options
context:
space:
mode:
authorGravatar Robin Obůrka <r.oburka@gmail.com> 2016-08-20 22:34:56 +0200
committerGravatar Robin Obůrka <r.oburka@gmail.com> 2016-08-20 22:34:56 +0200
commitf34177cecbea079c80ce16bb208d789b7f4f0794 (patch)
treef55fe47328bee62d3ab02b01a4ffce10793df6e4 /backuper.sh
parentFix bug in tar usage (diff)
downloadbackuper-f34177cecbea079c80ce16bb208d789b7f4f0794.tar.xz
Fix error in gpg recipients builder
Diffstat (limited to 'backuper.sh')
-rw-r--r--backuper.sh2
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
}