summaryrefslogtreecommitdiff
path: root/CLAUDE.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-23 22:43:59 +0200
committerPaul Buetow <paul@buetow.org>2026-02-23 22:43:59 +0200
commitb14a1ccfbf60b0866911788176491af5907702eb (patch)
treeeccb1293b62e3ccb8d7e24f9a6170e5c2141bc3b /CLAUDE.md
parent13272b89c8e343f53f0633fd057d7a0054113524 (diff)
Release v0.5.2v0.5.2
Diffstat (limited to 'CLAUDE.md')
-rw-r--r--CLAUDE.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CLAUDE.md b/CLAUDE.md
index 8a36f8d..6c106b8 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -9,7 +9,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
## Building and running
```bash
-mage # build (produces ./bin/foostore)
+mage # build (produces ./foostore)
mage install # install to $GOPATH/bin (default ~/go/bin)
mage test # run all tests
mage vet # run go vet
@@ -18,7 +18,7 @@ mage vet # run go vet
Or run directly after building:
```bash
-./bin/foostore [command] [args]
+./foostore [command] [args]
```
## Testing