summaryrefslogtreecommitdiff
path: root/CLAUDE.md
diff options
context:
space:
mode:
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