From fe56f315e4c824660d4aa6806bc466fedae6d059 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Tue, 9 Mar 2021 20:51:25 +0000 Subject: [PATCH] Fix install instructions error: Using `cargo install` to install the binaries for the package in current working directory is no longer supported, use `cargo install --path .` instead. Use `cargo build` if you want to simply build the package. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3b473bbae..7dae0b5ef 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Installation Instructions Likewise, installing can simply be done using: ```bash -$ cargo install +$ cargo install --path . ``` This command will install uutils into Cargo's *bin* folder (*e.g.* `$HOME/.cargo/bin`).