cli exclusion and readme updates

This commit is contained in:
dal 2025-02-12 14:08:01 -07:00
parent 24edcf2968
commit 533889a54f
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 13 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "buster-cli" name = "buster-cli"
version = "0.0.2" version = "0.0.3"
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View File

@ -8,14 +8,24 @@ Choose the installation command for your operating system:
### macOS (x86_64) ### macOS (x86_64)
```bash ```bash
curl -L https://github.com/buster-so/buster/releases/download/v0.0.1/buster-cli-darwin-x86_64.tar.gz | tar xz && sudo mv buster-cli /usr/local/bin/buster && sudo chmod +x /usr/local/bin/buster mkdir -p ~/.local/bin && curl -L https://github.com/buster-so/buster/releases/download/v0.0.1/buster-cli-darwin-x86_64.tar.gz | tar xz && mv buster-cli ~/.local/bin/buster && chmod +x ~/.local/bin/buster
```
### macOS (ARM/Apple Silicon)
```bash
mkdir -p ~/.local/bin && curl -L https://github.com/buster-so/buster/releases/download/v0.0.1/buster-cli-darwin-arm64.tar.gz | tar xz && mv buster-cli ~/.local/bin/buster && chmod +x ~/.local/bin/buster
``` ```
### Linux (x86_64) ### Linux (x86_64)
```bash ```bash
curl -L https://github.com/buster-so/buster/releases/download/v0.0.1/buster-cli-linux-x86_64.tar.gz | tar xz && sudo mv buster-cli /usr/local/bin/buster && sudo chmod +x /usr/local/bin/buster mkdir -p ~/.local/bin && curl -L https://github.com/buster-so/buster/releases/download/v0.0.1/buster-cli-linux-x86_64.tar.gz | tar xz && mv buster-cli ~/.local/bin/buster && chmod +x ~/.local/bin/buster
``` ```
> **Note**: After installation, make sure `~/.local/bin` is in your PATH. Add this to your shell's config file (`.bashrc`, `.zshrc`, etc.):
> ```bash
> export PATH="$HOME/.local/bin:$PATH"
> ```
### Windows (x86_64) ### Windows (x86_64)
1. Download the Windows binary: 1. Download the Windows binary:
```powershell ```powershell