File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,27 @@ For the lazy:
3535curl -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
4047The package can be installed from the [ official repositories] ( https://archlinux.org/packages/extra/x86_64/cloudflare-speed-cli/ ) :
4148
4249``` bash
4350pacman -S cloudflare-speed-cli
4451```
4552
53+ #### NixOS
54+
55+ ``` bash
56+ nix run github:kavehtehrani/cloudflare-speed-cli
57+ ```
58+
4659### Binaries
4760
4861Download the static binary for your system from the
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments