From e1802f4c03a44056110f967443eff3f0911a9ea1 Mon Sep 17 00:00:00 2001 From: Dan OBoyle Date: Fri, 10 Jul 2015 21:34:36 -0400 Subject: [PATCH] Resolves overzealous quotes reported in #105 --- 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 6263eaf..23ea5ed 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 }