aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorAldis Berjoza <aldis@berjoza.lv>2018-08-08 22:23:23 +0300
committerJason A. Donenfeld <Jason@zx2c4.com>2018-08-09 19:37:50 -0700
commitd68d9c50db4cdba32266c52e6546f1d5181948db (patch)
tree5fd5dd02301649d5099751a893c5cd294308b67b /src
parentversion: bump (diff)
downloadpassword-store-d68d9c50db4cdba32266c52e6546f1d5181948db.tar.xz
password-store-d68d9c50db4cdba32266c52e6546f1d5181948db.zip
Do not reencrypt symbolic links
Diffstat (limited to 'src')
-rwxr-xr-xsrc/password-store.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/password-store.sh b/src/password-store.sh
index 7264ffc..d89d455 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -108,6 +108,7 @@ reencrypt_path() {
local prev_gpg_recipients="" gpg_keys="" current_keys="" index passfile
local groups="$($GPG $PASSWORD_STORE_GPG_OPTS --list-config --with-colons | grep "^cfg:group:.*")"
while read -r -d "" passfile; do
+ [[ -L $passfile ]] && continue
local passfile_dir="${passfile%/*}"
passfile_dir="${passfile_dir#$PREFIX}"
passfile_dir="${passfile_dir#/}"