1 Commits
v0.2 ... main

Author SHA1 Message Date
1936e54b5f removed snap 2025-07-16 10:17:07 -05:00
2 changed files with 2 additions and 11 deletions

View File

@@ -117,9 +117,8 @@ curl -X POST "https://api.pushover.net/1/messages.json" \
The script automatically tries multiple installation methods in order:
1. **Snap Package** (if snapd is available)
2. **NPM Global Package** (if npm is available)
3. **Direct Binary Download** (fallback method)
1. **NPM Global Package** (if npm is available)
2. **Direct Binary Download** (fallback method)
## Error Codes

View File

@@ -44,14 +44,6 @@ install_bitwarden_cli() {
info "Installing Bitwarden CLI..."
if command -v snap &>/dev/null; then
info "Installing via snap..."
if sudo snap install bw; then
info "Bitwarden CLI installed successfully via snap"
return 0
fi
fi
if command -v npm &>/dev/null; then
info "Installing via npm..."
if sudo npm install -g @bitwarden/cli; then