From eb452e3481c6a0f14eea2d62c50a40f88e686f91 Mon Sep 17 00:00:00 2001 From: Gabriel Moreno Date: Sat, 3 Jan 2026 13:04:45 -0400 Subject: [PATCH] docs: remove lint errors on `README.md` --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9192b79..906de9d 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,8 @@ You can either [install](https://github.com/gantoreno/macfetch#homebrew-installa To install Macfetch via Homebrew, just tap the repository, and install like so: ```sh -$ brew tap gantoreno/macfetch -$ brew install macfetch +brew tap gantoreno/macfetch +brew install macfetch ``` And voilĂ ! Macfetch should now be installed under `/usr/local/Cellar/macfetch/`. @@ -44,22 +44,22 @@ And voilĂ ! Macfetch should now be installed under `/usr/local/Cellar/macfetch/< To build from source. Start by cloning the repo: ```sh -$ git clone https://github.com/gantoreno/macfetch.git -$ cd macfetch +git clone https://github.com/gantoreno/macfetch.git +cd macfetch ``` And simply run with `cargo`: ```sh -$ cargo run # for the debug target -$ cargo run --release # for the optimized release target +cargo run # for the debug target +cargo run --release # for the optimized release target ``` To build, same thing: ```sh -$ cargo build # for the debug target -$ cargo build --release # for the optimized release target +cargo build # for the debug target +cargo build --release # for the optimized release target ``` Your binary should be available under `target/x86_64-apple-darwin/`and withing the folder of the build target you chose (either `debug` or `release`).