From 586c1246003a389799fee647f3029ae8790f5cdb Mon Sep 17 00:00:00 2001 From: randomuser Date: Sun, 9 Jul 2023 17:12:42 -0500 Subject: [PATCH] minor change --- pash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pash b/pash index 4180492..193d8d6 100755 --- a/pash +++ b/pash @@ -183,8 +183,8 @@ main() { [ "$gpg" ] || die "GPG not found" - mkdir -p "$PASH_DIR" || - die "Couldn't create password directory" + # if the directory already exists, this throws an error. fixed, now. + mkdir -p "$PASH_DIR" cd "$PASH_DIR" || die "Can't access password directory"