spm

Personal fork of spm (simple password manager)

commit 4e2ddedf59ad3b75c390437598896c0cc8dd34c1
parent 8c2f8d546a5097ee77977ecb74907b6ad0eae686
Author: Sören Tempel <soeren+git@soeren-tempel.net>
Date: Sun, 27 Sep 2015 19:59:41 +0200

Don't quote PASSWORD_STORE_KEY in GPG_OPTS
1 file changed, 1 insertion(+), 1 deletion(-)
M
tpm
|
2
+-
diff --git a/tpm b/tpm
@@ -29,7 +29,7 @@ if [ -r "${STORE_DIR}/.gpg-id" ] && [ -z "${PASSWORD_STORE_KEY}" ]; then
 fi
 
 if [ -n "${PASSWORD_STORE_KEY}" ]; then
-  GPG_OPTS="${GPG_OPTS} --recipient '${PASSWORD_STORE_KEY}'"
+  GPG_OPTS="${GPG_OPTS} --recipient ${PASSWORD_STORE_KEY}"
 else
   GPG_OPTS="${GPG_OPTS} --default-recipient-self"
 fi