From a6516572f6e2557469d216b55a3b5fb064d0b694 Mon Sep 17 00:00:00 2001 From: Michiel Hazelhof Date: Fri, 22 Aug 2025 10:41:30 +0200 Subject: [PATCH] Improve consistency between bash and powerhell --- build.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index 3c58d72..0b819bb 100755 --- a/build.sh +++ b/build.sh @@ -53,10 +53,8 @@ done if [ "$1" = "update" ]; then docker pull ghcr.io/bitwarden/self-host:beta else - read -p "Update (or get) bitwarden source container (y/n): " -n 1 -r - echo - if [[ $REPLY =~ ^[Yy]$ ]] - then + read -p "Update (or get) bitwarden source container (y/n): " + if [[ $REPLY =~ ^[Yy]$ ]]; then docker pull ghcr.io/bitwarden/self-host:beta fi fi