From f181f79d7b8f78d1faf0e96e98ca99a9254b2064 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn Date: Tue, 7 Jul 2026 19:53:24 -0500 Subject: [PATCH] chore: fix resolving bw release --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 847efa6..a2c9644 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -48,7 +48,7 @@ else fi step "Downloading Bitwarden CLI binary..." - BW_VERSION=$(curl -fsLS "https://api.github.com/repos/bitwarden/clients/releases/latest" \ + BW_VERSION=$(curl -fsLS "https://api.github.com/repos/bitwarden/clients/releases?per_page=20" \ | grep '"tag_name"' | grep cli | head -1 | sed 's/.*"cli-v\([^"]*\)".*/\1/' || echo "") if [ -z "$BW_VERSION" ]; then err "Could not determine latest Bitwarden CLI version. Install bw manually and re-run."