Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions bin/pass-man
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ timer=6h
_usage() {
cat <<HELP

pass-man v1.3.2
pass-man v1.3.3
Written by Sandor Semsey, Copyright (C) 2020, License MIT

Usage: pass-man ACTION [TARGET] [EXTRA]...
Expand All @@ -37,7 +37,9 @@ HELP
## Check if tomb is opened
##########################
_check-tomb-open() {
tomb list >/dev/null 2>&1
local tomb
tomb=$(basename "${PASSWORD_STORE_TOMB_FILE:-~/.password.tomb}" .tomb)
tomb list "${tomb}" >/dev/null 2>&1
}

## Open vault
Expand Down