From cfced1b7d2f412c1181cd0c50186dedfaaf1fe66 Mon Sep 17 00:00:00 2001 From: Xinyu Bao <34500975+AspadaX@users.noreply.github.com> Date: Mon, 24 Mar 2025 16:37:06 +0800 Subject: [PATCH] Update installation.md Appended `--locked` flag to the Cargo installation commands. --- docs/src/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/installation.md b/docs/src/installation.md index ce3f7c87c..856ca9d22 100644 --- a/docs/src/installation.md +++ b/docs/src/installation.md @@ -16,11 +16,11 @@ You can also [build uutils from source](build.md). ```shell # Linux -cargo install coreutils --features unix +cargo install coreutils --features unix --locked # MacOs -cargo install coreutils --features macos +cargo install coreutils --features macos --locked # Windows -cargo install coreutils --features windows +cargo install coreutils --features windows --locked ``` ## Linux