From 518472d5cedf948b9f80c4029682ba295af30403 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Tue, 20 Feb 2024 12:41:25 -0300 Subject: [PATCH] Fixed ordering on entrypoint logging --- README.md | 2 +- entrypoint.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bf841e3..5a54bef 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,8 @@ In the end, the script will lock your vault and log out of your account: ``` sh Your vault is locked. -KeePass file /exports/my-cool-bitwarden-backup.kdbx generated successfully You have logged out. +KeePass file /exports/my-cool-bitwarden-backup.kdbx generated successfully ``` And you can find your file in your mounted directory! diff --git a/entrypoint.sh b/entrypoint.sh index 7eee086..d2541b5 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -38,7 +38,7 @@ echo "Generating KeePass file $DATABASE_PATH" python3 bitwarden-to-keepass.py || { echo "Failed to convert to KeePass"; exit 1; } bw lock -echo "KeePass file $DATABASE_PATH generated successfully" - # Log out of Bitwarden bw logout + +echo "KeePass file $DATABASE_PATH generated successfully"