From 6f2a701f81db946856feda746a4c3f949ad91d1b Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 23 Sep 2025 09:48:53 +0200 Subject: [PATCH] README: recommend latest release in embedded builds section --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 04126a917..a082f60f4 100644 --- a/README.rst +++ b/README.rst @@ -177,8 +177,8 @@ Fish will then read these right from its own binary, and print them out when nee To install fish with embedded files, just use ``cargo``, like:: cargo install --path /path/to/fish # if you have a git clone - cargo install --git https://github.com/fish-shell/fish-shell --tag 4.0.0 # to build from git with a specific version - cargo install --git https://github.com/fish-shell/fish-shell # to build the current development snapshot without cloning + cargo install --git https://github.com/fish-shell/fish-shell --tag "$(curl -s https://api.github.com/repos/fish-shell/fish-shell/releases/latest | jq -r .tag_name)" # to build the latest release + cargo install --git https://github.com/fish-shell/fish-shell # to build the latest development snapshot This will place the binaries in ``~/.cargo/bin/``, but you can place them wherever you want.