spm

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

commit e758cfd3279b60595cf5c203500566c76f4eb4dc
parent 30d27cdf83ec7c932e53644c99a7cab8bcb50a3c
Author: Klemens Nanni <kl3@posteo.org>
Date:   Sun, 15 May 2016 19:14:53 +0200

Simplify error message

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

diff --git a/tpm b/tpm @@ -55,7 +55,7 @@ insert() { [ -z "${1}" ] && abort 'USAGE: tpm insert ENTRY' [ -e "${STORE_DIR}"/"${1}".gpg ] \ - && abort 'The existent entry must be removed first.' + && abort 'Entry already exists.' readpw "Password for '${1}': " password [ -t 0 ] && printf '\n'