Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
cache: npm
- run: node -v
- run: npm ci
- run: npm run test
- run: npm run coverage
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ chmod +x linkinator

[macOS arm64 Download](https://github.com/avenga/linkinator/releases/latest/download/linkinator-darwin-arm64)

The binary needs to be marked as executable. Also, there might be a quarantine attribute applied automatically because the binary is unsigned, which needs to be removed.
The binary needs to be marked as executable.
**Important:** when downloading the binary using a browser instead of `wget`/`curl`, it might receive a quarantine attribute. See below on how to remove it.

```sh
# x64
Expand All @@ -76,7 +77,7 @@ chmod +x linkinator
./linkinator --help
```

If you see an error when executing (file damaged, invalid signature or similar), there might be a quarantine attribute applied automatically because the binary is unsigned, which needs to be removed.
**If you see an error when executing** (file damaged, invalid signature or similar), there might be a quarantine attribute applied automatically because the binary is unsigned, which needs to be removed:

```sh
xattr -d com.apple.quarantine linkinator
Expand Down
Loading