From aecfd8d92885f37a74ad89862e36ba153056a07b Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Mon, 12 Aug 2024 23:03:18 +0900 Subject: [PATCH] :memo: Simplify install command use `cargo install --git ` instead of `git clone ` --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 9f1a0a2..822f2dd 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,7 @@ After all requirements are met, PNA-FS can be installed using `cargo`: ```bash -$ git clone https://github.com/Portable-Network-Archive/fs.git -$ cd fs -$ cargo install --path . +$ cargo install --git https://github.com/Portable-Network-Archive/fs.git ``` This will generate the `pnafs` binary in `$HOME/.cargo/bin`. Make sure that this directory is in your `PATH` variable: `export PATH=$PATH:$HOME/.cargo/bin`