Commit f90f1b7
authored
docs: fix agy-reader install command path (#566)
Fix the `go install` command for [agy-reader](https://github.com/mjacobs/agy-reader) shown in the README.
The main package for the CLI binary is located under `cmd/agy-reader`, so the install path must include that segment.
**Before:**
```bash
go install github.com/mjacobs/agy-reader@latest
```
**After:**
```bash
go install github.com/mjacobs/agy-reader/cmd/agy-reader@latest
```
This is a documentation-only change; no code or tests affected.
Co-authored-by: Charley Wu <akunzai@users.noreply.github.com>1 parent ab3d5c4 commit f90f1b7
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
259 | | - | |
| 259 | + | |
260 | 260 | | |
261 | 261 | | |
262 | 262 | | |
| |||
0 commit comments