Skip to content

Commit c98cbae

Browse files
committed
docs(claude): fix go run commands to use root-level main.go
1 parent 3cf47b0 commit c98cbae

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

CLAUDE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ go test -v -run TestName ./path/to/package
3636
### Running
3737
```bash
3838
# Run with default settings (scans $HOME)
39-
go run ./cmd/reposcan
39+
go run .
4040

4141
# Run with custom root
42-
go run ./cmd/reposcan -r ~/Code
42+
go run . -r ~/Code
4343

4444
# Run with specific output format
45-
go run ./cmd/reposcan -o interactive
46-
go run ./cmd/reposcan -o table
47-
go run ./cmd/reposcan -o json
45+
go run . -o interactive
46+
go run . -o table
47+
go run . -o json
4848
```
4949

5050
## Architecture

0 commit comments

Comments
 (0)