From 5a8d9a8aa08b4609ee1ec2ebcf4d83482ed7d7ae Mon Sep 17 00:00:00 2001 From: Timothy Kim Date: Wed, 18 Mar 2026 19:15:44 -0400 Subject: [PATCH] install bws to /usr/bin instead of /usr/local/bin --- scripts/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 529d5ce..4ef654f 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -48,8 +48,8 @@ dnf install -y certbot if ! command -v bws &>/dev/null; then echo "==> Installing Bitwarden Secrets Manager CLI..." curl -sL "https://github.com/bitwarden/sdk-sm/releases/download/bws-v${BWS_VERSION}/bws-x86_64-unknown-linux-gnu-${BWS_VERSION}.zip" -o /tmp/bws.zip - unzip -o /tmp/bws.zip -d /usr/local/bin - chmod +x /usr/local/bin/bws + unzip -o /tmp/bws.zip -d /usr/bin + chmod +x /usr/bin/bws rm /tmp/bws.zip fi