From 1d3bbbcd92003702ea985db67c164f543d1bdd78 Mon Sep 17 00:00:00 2001 From: Michiel Hazelhof Date: Tue, 12 Aug 2025 16:21:20 +0200 Subject: [PATCH] Fix typo --- build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.ps1 b/build.ps1 index 4d60b6b..407f3fd 100644 --- a/build.ps1 +++ b/build.ps1 @@ -45,11 +45,11 @@ foreach ($instance in $oldinstances) { } # update bitwarden itself -if ($args[0] -eq 'y') { +if ($args[0] -eq 'update') { docker pull ghcr.io/bitwarden/self-host:beta } else { $confirmation = Read-Host "Update (or get) bitwarden source container (y/n)" - if ($confirmation -eq 'update') { + if ($confirmation -eq 'y') { docker pull ghcr.io/bitwarden/self-host:beta } }