Fix release (#16278)

### What problem does this PR solve?

Fix release

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2026-06-23 22:04:34 +08:00
committed by GitHub
parent 017adf841f
commit 919f596066
3 changed files with 2 additions and 2 deletions

View File

@@ -267,7 +267,7 @@ build_go() {
go build -o "$INGESTOR_BINARY" cmd/ingestor.go
GOPROXY=${GOPROXY:-https://goproxy.cn,https://proxy.golang.org,direct} CGO_ENABLED=1 \
CGO_CFLAGS="$CGO_CFLAGS" CGO_LDFLAGS="$CGO_LDFLAGS" \
go build -o "$RAGFLOW_CLI_BINARY" cmd/ragflow_cli.go
go build -o "$RAGFLOW_CLI_BINARY" cmd/ragflow-cli.go
if [ ! -f "$RAGFLOW_SERVER_BINARY" ]; then
echo -e "${RED}Error: Failed to build RAGFlow server binary${NC}"

View File

@@ -21,7 +21,7 @@ This is the Go implementation of the RAGFlow command-line interface, compatible
### Build and run
```bash
go build -o ragflow-cli ./cmd/ragflow_cli.go
go build -o ragflow-cli ./cmd/ragflow-cli.go
./ragflow-cli
```