From 7ef9657e540d7bf7e2e64dbcb03c29e9166a4ddd Mon Sep 17 00:00:00 2001 From: Simon Ungar Felding <45149055+simonfelding@users.noreply.github.com> Date: Thu, 12 Jun 2025 16:57:11 +0200 Subject: [PATCH] fix missing if statement closing --- build/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/entrypoint.sh b/build/entrypoint.sh index a4a56d9..32a0453 100644 --- a/build/entrypoint.sh +++ b/build/entrypoint.sh @@ -29,7 +29,7 @@ if [[ ! -f $HOME/.gnupg ]]; then echo "No GPG key found in $HOME/.gnupg. Running gpg --generate-key." gpg --generate-key --batch /protonmail/gpgparams pass init pass-key - +fi # delete lock files if they exist - this can happen if the container is restarted forcefully if [[ `find $HOME -name "*.lock" | wc -l` != 0 ]]; then @@ -63,4 +63,4 @@ jq '.Settings.AutoUpdate = (env.PROTONMAIL_AutoUpdate | if . == "true" then true # Start protonmail echo "Starting ProtonMail Bridge. Connect to the CLI with `docker exec -it ` and type 'help' for instructions." -/protonmail/proton-bridge --cli $@ \ No newline at end of file +/protonmail/proton-bridge --cli $@