Fix: build instructions
All checks were successful
Deploy Website / deploy (push) Has been skipped

This commit is contained in:
2026-03-01 11:01:10 +01:00
parent 11cc925faf
commit 5a59937cc7
3 changed files with 4 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
## Quick Start
```bash
git clone --recursive https://github.com/Bubobubobubobubo/cagire
git clone https://github.com/Bubobubobubobubo/cagire
cd cagire
cargo build --release
```
@@ -163,7 +163,7 @@ scripts/build-all.sh --platforms macos-arm64,linux-x86_64 --targets cli,desktop
scripts/build-all.sh --all --yes
```
Builds selected targets, producing binaries in `target/releases/`.
Builds selected targets, producing binaries in `releases/`.
Platform aliases: `macos-arm64`, `macos-x86_64`, `linux-x86_64`, `linux-aarch64`, `windows-x86_64`.
Target aliases: `cli`, `desktop`, `plugins`.
@@ -175,7 +175,7 @@ Linux releases ship as AppImages — self-contained executables that bundle all
After building a Linux target, produce an AppImage with:
```bash
scripts/make-appimage.sh target/x86_64-unknown-linux-gnu/release/cagire x86_64 target/releases
scripts/make-appimage.sh target/x86_64-unknown-linux-gnu/release/cagire x86_64 releases
```
`scripts/build-all.sh` does this automatically for every Linux target selected. The CI pipeline produces AppImages for the x86_64 Linux build. Cross-arch AppImage building (e.g. aarch64 on x86_64) is not supported — run on a matching host or in CI.