From a1b59dd6a949633a86b91dcc9bf23f896107182d Mon Sep 17 00:00:00 2001 From: Ayush Agarwal Date: Mon, 15 Nov 2021 09:30:52 +0530 Subject: fix: exit if file is empty or decryption fails --- tessen | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tessen') diff --git a/tessen b/tessen index a22dfb1..8926e39 100755 --- a/tessen +++ b/tessen @@ -10,7 +10,7 @@ set +x # GLOBAL VARIABLES # variables which won't be changed and can be made readonly -readonly tsn_version="1.2.1" +readonly tsn_version="1.2.2" readonly tsn_prefix="${PASSWORD_STORE_DIR:-$HOME/.password-store}" readonly tsn_cliptime="${PASSWORD_STORE_CLIP_TIME:-15}" readonly tsn_delay="${TESSEN_DELAY:-200}" @@ -54,7 +54,11 @@ get_pass_data() { local -a passdata local keyval_regex otp_regex idx key val - mapfile -t passdata < <(pass "$tsn_passfile") + mapfile -t passdata < <(pass "$tsn_passfile" 2> /dev/null) + if [[ "${#passdata[@]}" -eq 0 ]]; then + _die "$tsn_passfile is empty" + fi + # the key can contain # alphanumerics, spaces, hyphen, underscore, plus, at, and hash # the value can contain -- cgit v1.2.3