From f34177cecbea079c80ce16bb208d789b7f4f0794 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20Ob=C5=AFrka?= Date: Sat, 20 Aug 2016 22:34:56 +0200 Subject: Fix error in gpg recipients builder --- backuper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v1.2.3