Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,20 @@ Download the latest release from the [releases page](https://github.com/forketyf
```bash
curl -LO https://github.com/forketyfork/architect/releases/latest/download/architect-macos-arm64.tar.gz
tar -xzf architect-macos-arm64.tar.gz
xattr -d com.apple.quarantine architect.bin lib/* 2>/dev/null || true
xattr -dr com.apple.quarantine .
Comment thread
forketyfork marked this conversation as resolved.
./architect
```

**For Intel Macs:**
```bash
curl -LO https://github.com/forketyfork/architect/releases/latest/download/architect-macos-x86_64.tar.gz
tar -xzf architect-macos-x86_64.tar.gz
xattr -d com.apple.quarantine architect.bin lib/* 2>/dev/null || true
xattr -dr com.apple.quarantine .
./architect
```

**Note**:
- The archive contains a small launcher `architect`, the main binary `architect.bin`, and a `lib/` directory with required dynamic libraries. Keep all of them in the same location.
- If you see "No such xattr" when removing the quarantine flag, that's fine - it means the flag wasn't set and you can proceed directly to running the application.
- Not sure which architecture? Run `uname -m` - if it shows `arm64`, use the ARM64 version; if it shows `x86_64`, use the Intel version.

### Build from Source
Expand Down