Skip to content

Commit ea9852f

Browse files
julianknutsenclaude
andcommitted
Add binary install instructions for v0.1.0 to README
Add curl+tar one-liners for all four platforms (darwin/linux x amd64/arm64), link to the release page, and pin go install to v0.1.0. Split prerequisites (Dolt) into its own section. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4dd1149 commit ea9852f

1 file changed

Lines changed: 32 additions & 2 deletions

File tree

README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,41 @@ wl join hop/wl-commons
1414

1515
## Install
1616

17+
### Binary (recommended)
18+
19+
Download the latest release for your platform:
20+
21+
```bash
22+
# macOS (Apple Silicon)
23+
curl -fsSL https://github.com/julianknutsen/wasteland/releases/download/v0.1.0/wasteland_0.1.0_darwin_arm64.tar.gz | tar xz
24+
sudo mv wl /usr/local/bin/
25+
26+
# macOS (Intel)
27+
curl -fsSL https://github.com/julianknutsen/wasteland/releases/download/v0.1.0/wasteland_0.1.0_darwin_amd64.tar.gz | tar xz
28+
sudo mv wl /usr/local/bin/
29+
30+
# Linux (x86_64)
31+
curl -fsSL https://github.com/julianknutsen/wasteland/releases/download/v0.1.0/wasteland_0.1.0_linux_amd64.tar.gz | tar xz
32+
sudo mv wl /usr/local/bin/
33+
34+
# Linux (ARM64)
35+
curl -fsSL https://github.com/julianknutsen/wasteland/releases/download/v0.1.0/wasteland_0.1.0_linux_arm64.tar.gz | tar xz
36+
sudo mv wl /usr/local/bin/
37+
```
38+
39+
Or browse all assets on the [v0.1.0 release page](https://github.com/julianknutsen/wasteland/releases/tag/v0.1.0).
40+
41+
### From source
42+
1743
```bash
18-
go install github.com/julianknutsen/wasteland/cmd/wl@latest
44+
go install github.com/julianknutsen/wasteland/cmd/wl@v0.1.0
1945
```
2046

21-
Requires [Go 1.24+](https://go.dev/dl/) and [Dolt](https://docs.dolthub.com/introduction/installation).
47+
Requires [Go 1.24+](https://go.dev/dl/).
48+
49+
### Prerequisites
50+
51+
[Dolt](https://docs.dolthub.com/introduction/installation) must be installed and in your PATH.
2252

2353
## Getting Started
2454

0 commit comments

Comments
 (0)