Skip to content

Commit

Permalink
chore(release): v1.0.3
Browse files Browse the repository at this point in the history
add directory from local/share/password-store
set exit 0 when directory not exited
  • Loading branch information
r17x committed Mar 21, 2022
1 parent 239d40e commit f3dab12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pass.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if (command -v cut && command -v pass)&>/dev/null;then
echo "---"

# location of password-store file
cd ~/.password-store || exit
cd ~/.password-store || cd ~/.local/share/password-store || exit 0
while IFS= read -r -d '' singelfile
do
singelfile="${singelfile%.*}"
Expand Down

0 comments on commit f3dab12

Please sign in to comment.