From c18d3732c387e48ad7b88f03020fc473835ae52f Mon Sep 17 00:00:00 2001 From: Dan OBoyle Date: Fri, 10 Jul 2015 21:35:39 -0400 Subject: [PATCH] Revert "Resolves overzealous quotes reported in #105" This reverts commit 8cfcfa52d1ee12029bd5e501fe3050e1ee927275. --- bin/_blackbox_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/_blackbox_common.sh b/bin/_blackbox_common.sh index 23ea5ed..6263eaf 100755 --- a/bin/_blackbox_common.sh +++ b/bin/_blackbox_common.sh @@ -211,7 +211,7 @@ function encrypt_file() { encrypted="$2" echo "========== Encrypting: $unencrypted" >&2 - $GPG --use-agent --yes --trust-model=always --encrypt -o "$encrypted" $(awk '{ print "-r" $1 }' < "$BB_ADMINS") "$unencrypted" >&2 + $GPG --use-agent --yes --trust-model=always --encrypt -o "$encrypted" "$(awk '{ print "-r" $1 }' < "$BB_ADMINS")" "$unencrypted" >&2 echo '========== Encrypting: DONE' >&2 }