Skip to content

Commit d4e4838

Browse files
authored
Update README.md
1 parent 169c57e commit d4e4838

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,32 @@ Auto-detects your coverage artifact files and CI environment to post to [Coveral
1818

1919
### Linux
2020

21-
To install the generic Linux binary (which is for `x86_64`):
21+
#### x86_64
22+
To install the generic Linux binary (`x86_64`):
2223

2324
```bash
2425
curl -L https://coveralls.io/coveralls-linux.tar.gz | tar -xz -C /usr/local/bin
2526
```
2627

27-
**Note**: You can omit the `-C /usr/local/bin` argument to keep the binary in the current directory.
28+
Or you can use the architecture-specific filename for Linux on `x86_64`:
29+
30+
```
31+
curl -L https://coveralls.io/coveralls-linux-x86_64.tar.gz | tar -xz -C /usr/local/bin
32+
```
33+
34+
#### aarch64
35+
36+
To install the binary for Linux on `aarch64`:
37+
38+
```
39+
curl -L https://coveralls.io/coveralls-linux-aarch64.tar.gz | tar -xz -C /usr/local/bin
40+
```
41+
42+
**Notes**:
43+
44+
- **Use as normal after installation**: All `.tar.gz` archives in all releases, regardless of filename, will un-tar as a binary named `coveralls` that's ready to receive the commands covered in [usage](#usage).
45+
46+
- **Choice of directory**: You can omit the `-C /usr/local/bin` argument to keep the binary in the current directory.
2847

2948
### MacOS
3049

0 commit comments

Comments
 (0)