spm

Personal fork of spm (simple password manager)

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

Simplify error message
1 file changed, 1 insertion(+), 1 deletion(-)
M
tpm
|
2
+-
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'