diff options
author | Erich Eckner <git@eckner.net> | 2021-05-20 13:39:17 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2021-05-20 13:39:17 +0200 |
commit | 51e3dd1435fa73ac943c1497a58839e8aebea30c (patch) | |
tree | 123dd67385a0332eda0cf3d57582e0016f4970d0 | |
parent | 8c8c6097e9f38e9fe64087d139df72a15fe746a2 (diff) | |
download | passwort-tresor-51e3dd1435fa73ac943c1497a58839e8aebea30c.tar.xz |
neues-passwort: Pfad richtig prüfen
-rw-r--r-- | neues-passwort.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/neues-passwort.in b/neues-passwort.in index 1b7b501..77ccddc 100644 --- a/neues-passwort.in +++ b/neues-passwort.in @@ -115,8 +115,8 @@ if [ -d "${Pfad}" ]; then Pfad="${Pfad#${passstore_Verzeichnis}/}" fi -if [ ! -d "${passstore_Verzeichnis}/${Pfad}" ]; then - printf 'Pfad "%s" existiert noch nicht - erstellen? (leer="ja")' "${Pfad}" +if [ -z "${Pfad%%*/*}" ] && [ ! -d "${passstore_Verzeichnis}/${Pfad%/*}" ]; then + printf 'Pfad "%s" existiert noch nicht - erstellen? (leer="ja")' "${Pfad%/*}" read -r Antwort if [ -n "${Antwort}" ]; then echo 'ok, dann nicht.' |