spm

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

commit 46e615cfdaf8ea9181450030177ccdee3df931ad
parent ad7a30df3c5b256dd0e1aaf4098090eb38df0e66
Author: nmeum <git-nmeum@8pit.net>
Date:   Fri, 10 Jan 2014 16:33:03 +0100

Don't use long flags since they are only supported by the GNU corutils

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

diff --git a/tpm b/tpm @@ -62,7 +62,7 @@ insert() { abort "You didn't specify a password." fi - mkdir --parents "$(dirname "${entry_path}")" + mkdir -p "$(dirname "${entry_path}")" gpg2 ${GPG_OPTS} --encrypt --output "${entry_path}" <<< "${password}" }