summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2012-09-04 19:49:27 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-09-04 19:49:27 +0200
commite14c00af8edf8d4b90b46fda9bf733630ef85199 (patch)
treea3b3d7002d832357d038934c6743b50c62e83fb2
parent4eabdd63867dea7831ab72c1e200f5d911dcb13d (diff)
downloadpass-e14c00af8edf8d4b90b46fda9bf733630ef85199.tar.gz
pass-e14c00af8edf8d4b90b46fda9bf733630ef85199.tar.bz2
pass-e14c00af8edf8d4b90b46fda9bf733630ef85199.zip
Properly quote the path too.
-rwxr-xr-xsrc/password-store.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/password-store.sh b/src/password-store.sh
index 5b2f6d0..28bd9d6 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -130,7 +130,7 @@ case "$command" in
if [ $clip -eq 0 ]; then
exec gpg -q -d "$passfile"
else
- clip "$(gpg -q -d "$passfile")" $path
+ clip "$(gpg -q -d "$passfile")" "$path"
fi
fi
;;
hers/cgit.git/commit/ui-shared.c?id=488a214a81a25c6397c56822ed1713f51dddc520&follow=1'>Add support for ETag in 'plain' viewLars Hjemli4-0/+5 When downloading a blob identified by its path, the client might want to know if the blob has been modified since a previous download of the same path. To this end, an ETag containing the blob SHA1 seems to be ideal. Todo: add support for HEAD requests... Suggested-by: Owen Taylor <otaylor@redhat.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-12ui-tree: escape ascii-text properly in hexdump viewLars Hjemli1-4/+9 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-12Makefile: add doc-related targetsLars Hjemli1-2/+17 Signed-off-by: Lars Hjemli <hjemli@gmail.com>