aboutsummaryrefslogtreecommitdiff
path: root/.local/share/pass-extensions/directory.bash
blob: 84db500082083540640fb5abc3e8f5fb79449143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# print the initialized password store directory as a fully qualified path.
# exits with code 1 if the password store is not initialized.
dir="${PASSWORD_STORE_DIR-$HOME/.password-store}"
dir="$(realpath "$dir")"
if [ -e "$dir/.gpg-id" ] ; then
	echo "$dir"
else
	echo "error: password store is not initialized" >&2
	exit 1
fi