From b75dfb25129d8a9b4bdd26d02cb2c21e05d4bef6 Mon Sep 17 00:00:00 2001 From: Michiel Hazelhof Date: Tue, 12 Aug 2025 15:42:52 +0200 Subject: [PATCH] Fix circleci --- .circleci/config.yml | 2 +- build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3a43887..443f66e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: command: ./generateKeys.sh - run: name: Build script - command: ./build.sh + command: ./build.sh update - run: name: Test generating user license command: ./licenseGen.sh user TestName TestEmail@example.com 4a619d4a-522d-4c70-8596-affb5b607c23 diff --git a/build.sh b/build.sh index 1b4fd4b..4125f8e 100755 --- a/build.sh +++ b/build.sh @@ -46,7 +46,7 @@ for INSTANCE in ${OLDINSTANCES[@]}; do done # update bitwarden itself -if [ "$1" = "y" ]; then +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