Skip to content

Commit

Permalink
docs(README): fix installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
QaidVoid committed Nov 3, 2024
1 parent 948a42e commit b2fc746
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ The install script supports several environment variables to customize the insta
- `SOAR_VERSION`: Specify the version to install
```sh
# Install specific version
SOAR_VERSION=0.4.0 curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | sh
curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | SOAR_VERSION=0.4.0 sh

# Install latest release
SOAR_VERSION=latest curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | sh
curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | SOAR_VERSION=latest sh

# Install nightly build
SOAR_VERSION=nightly curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | sh
curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | SOAR_VERSION=nightly sh
```

- `SOAR_INSTALL_DIR`: Specify custom installation directory
```sh
SOAR_INSTALL_DIR=~/.bin curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | sh
curl -qfsSL "https://soar.qaidvoid.dev/install.sh" | SOAR_INSTALL_DIR=~/.bin sh
```

> **Note**: If no installation directory is specified, the script will attempt to install in `~/.local/bin`. If that's not available, it will install in the current directory.
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ main() {
x86_64)
ARCH="x86_64"
;;
aarcharm64)
aarch64)
ARCH="aarch64"
;;
*)
Expand Down

0 comments on commit b2fc746

Please sign in to comment.