From 36317011fa4efa1f91ecd225d5a1a0f42c41f165 Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Sun, 21 Jul 2024 02:27:03 -0700 Subject: [PATCH] Fix no password prompt. Fixes #2408 --- setup/firstuser.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/firstuser.sh b/setup/firstuser.sh index 76514222..9c3d2e87 100644 --- a/setup/firstuser.sh +++ b/setup/firstuser.sh @@ -48,7 +48,7 @@ if [ -z "$(management/cli.py user)" ]; then fi # Create the user's mail account. This will ask for a password if none was given above. - management/cli.py user add "$EMAIL_ADDR" "${EMAIL_PW:-}" + management/cli.py user add "$EMAIL_ADDR" ${EMAIL_PW:+"$EMAIL_PW"} # Make it an admin. hide_output management/cli.py user make-admin "$EMAIL_ADDR"