diff --git a/scripts/install.sh b/scripts/install.sh index c4271210f..0a3a3d94a 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -30,8 +30,7 @@ read -p "(!) Do you want to use Let's Encrypt to generate a free SSL certificate if [ $LETS_ENCRYPT == 'y' ] then - echo -e "\n(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): " - read EMAIL + read -p "(!) Enter your email address (Let's Encrypt will send you certificate expiration reminders): " EMAIL mkdir -p $OUTPUT_DIR/letsencrypt/live/$DOMAIN docker run -it --rm --name certbot -p 80:80 -v $OUTPUT_DIR/letsencrypt:/etc/letsencrypt/ certbot/certbot \ certonly --standalone --noninteractive --agree-tos --preferred-challenges http --email $EMAIL -d $DOMAIN @@ -40,4 +39,5 @@ fi docker run -it --rm --name setup -v $OUTPUT_DIR:/bitwarden bitwarden/setup \ dotnet Setup.dll -install 1 -domain $DOMAIN -letsencrypt $LETS_ENCRYPT -echo -e "\nSetup complete" +echo "" +echo "Setup complete"