Skip to content

Commit b299d6b

Browse files
committed
updated README.md
1 parent 4206e13 commit b299d6b

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,27 @@ For the lazy:
3535
curl -fsSL https://raw.githubusercontent.com/kavehtehrani/cloudflare-speed-cli/main/install.sh | sh
3636
```
3737

38-
### Arch Linux
38+
### Linux Distribution Packages
39+
40+
As other people have kindly contributed, I've merged their pull requests for the distro they have
41+
contributed toward. My main OS is Ubuntu and Fedora, and the main distribution mechanism for this package is via
42+
['cargo-dist'](https://github.com/axodotdev/cargo-dist) which I have found helpful in generating the compatible binaries
43+
via github actions. If you would like to contribute for other distros, please open an issue or send in a pull request.
44+
45+
#### Arch Linux
3946

4047
The package can be installed from the [official repositories](https://archlinux.org/packages/extra/x86_64/cloudflare-speed-cli/):
4148

4249
```bash
4350
pacman -S cloudflare-speed-cli
4451
```
4552

53+
#### NixOS
54+
55+
```bash
56+
nix run github:kavehtehrani/cloudflare-speed-cli
57+
```
58+
4659
### Binaries
4760

4861
Download the static binary for your system from the

src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ async fn main() -> Result<()> {
1919

2020
match cli::run(args).await {
2121
Ok(()) => {
22-
// Explicitly exit with code 0 on success, especially for non-TUI modes
2322
if is_non_tui {
2423
std::process::exit(0);
2524
}

0 commit comments

Comments
 (0)