Implement requested changes

This commit is contained in:
Hunter Peavey 2020-06-29 14:56:39 -07:00
parent c863dcc89f
commit 4b32d99f6d
No known key found for this signature in database
GPG Key ID: 1AADE5E728FFC667
1 changed files with 1 additions and 1 deletions

2
pash
View File

@ -60,7 +60,7 @@ pw_del() {
# Remove empty parent directories of a password
# entry. It's fine if this fails as it means that
# another entry also lives in the same directory.
rmdir -p "${1%/*}" 2>/dev/null || true
rmdir -p "${1%/*}" 2>/dev/null || :
}
}