spm

Personal fork of spm (simple password manager)
git clone git@getsh.org:spm.git
Log | Files | Refs | README | LICENSE

commit edd00851a18a3c5353b403ed376a77fd29cea01e
parent 48162ee08dbec9b1b085842f1aa95b4cb107e69c
Author: Klemens Nanni <kl3@posteo.org>
Date:   Mon, 29 Feb 2016 08:48:46 +0100

Do not prune empty groups

Diffstat:
Mtpm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tpm b/tpm @@ -58,7 +58,7 @@ list() { [ -n "${1}" ] && [ ! -d "${STORE_DIR}/${1}" ] \ && abort "The specified group doesn't exist. See 'tpm list'." - tree --prune --noreport "${STORE_DIR}/${1}" + tree --noreport -- "${STORE_DIR}/${1}" echo }