We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5246740 commit 57a2c46Copy full SHA for 57a2c46
2 files changed
bin/Readme.md
@@ -2,4 +2,4 @@
2
3
**DEPRECATED**
4
5
-Use Magicrew CLI instead
+Use [Magicrew CLI](../cli) instead
cli/Readme.md
@@ -12,7 +12,23 @@ magicrew help
12
13
## Build from source 从源代码构建
14
15
+You may use `go build` to build the binary for your current machine.
16
+
17
+可以直接用go build来构建本机的二进制
18
19
```bash
20
# at the cli directory
21
go build -o magicrew ./cmd
22
```
23
24
+Use Makefile to build multi-platform binaries:
25
26
+如果需要构建多架构的二进制,可以使用Makefile:
27
28
+```bash
29
+make build
30
+```
31
32
+The built binaries will be placed in the dist directory, with the filename format of `magicrew-cli-<platform>-<arch>`
33
34
+构建好的二进制文件会在dist目录下,文件名格式为`magicrew-cli-<platform>-<arch>`。
0 commit comments