Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If you don't have a JavaScript runtime, we have macOS and Linux releases availab
You can install a standalone binary directly from a GitHub release asset. For example, on Linux x64:

```sh
curl -fL https://github.com/acai-sh/cli/releases/download/v0.0.2/acai-linux-x64 -o acai
curl -fL https://github.com/acai-sh/cli/releases/download/<version>/acai-linux-x64 -o acai
chmod +x acai
sudo mv acai /usr/local/bin/acai
acai --help
Expand All @@ -36,7 +36,7 @@ If you prefer a user-local install without `sudo`:

```sh
mkdir -p "$HOME/.local/bin"
curl -fL https://github.com/acai-sh/cli/releases/download/v0.0.2/acai-linux-x64 -o "$HOME/.local/bin/acai"
curl -fL https://github.com/acai-sh/cli/releases/download/<version>/acai-linux-x64 -o "$HOME/.local/bin/acai"
chmod +x "$HOME/.local/bin/acai"
"$HOME/.local/bin/acai" --help
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acai.sh/cli",
"version": "0.0.2",
"version": "0.0.3",
"license": "Apache-2.0",
"description": "CLI for syncing and querying acai.sh spec-driven development data.",
"module": "index.ts",
Expand Down
Loading