From 533889a54f4afcc0ba35206144ec482f6e601c38 Mon Sep 17 00:00:00 2001 From: dal Date: Wed, 12 Feb 2025 14:08:01 -0700 Subject: [PATCH] cli exclusion and readme updates --- cli/Cargo.toml | 2 +- cli/README.md | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ddf2156da..f0f28d7ed 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "buster-cli" -version = "0.0.2" +version = "0.0.3" edition = "2021" build = "build.rs" diff --git a/cli/README.md b/cli/README.md index cef13d510..dcd7f9fac 100644 --- a/cli/README.md +++ b/cli/README.md @@ -8,14 +8,24 @@ Choose the installation command for your operating system: ### macOS (x86_64) ```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) ```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) 1. Download the Windows binary: ```powershell