Fixed ordering on entrypoint logging

This commit is contained in:
Roger Gonzalez 2024-02-20 12:41:25 -03:00
parent 3dd510ab27
commit 518472d5ce
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
2 changed files with 3 additions and 3 deletions

View File

@ -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!

View File

@ -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"