dvogt23/pass-export

Error: forums/hotwire is not in the password store.

Opened this issue · 1 comments

map7 commented

When trying to export all my passwords on my Debian 10 box with pass v 1.7.3 & pass-export compiled from master (02/12/2022) I get the following error;

Error: forums/hotwire is not in the password store.

The actual password file in question has a space in it;

~/.password-store/forums/hotwire discuss.gpg

It turns out a lot my password files do.

map7 commented

work around is to rename all my files

cd .password-store
find . -name "* *" -type d | rename 's/ /_/g'    # do the directories first
find . -name "* *" -type f | rename 's/ /_/g'