From 9aeaf98c4b0e99a3af45517a2a54f7715a396542 Mon Sep 17 00:00:00 2001 From: David Dunn <26876072+doubledup@users.noreply.github.com> Date: Wed, 8 Feb 2023 00:32:27 +0200 Subject: [PATCH] Make install command in documentation compatible with fish shell (#7474) Use a pipe for all install commands Co-authored-by: Valentin Gagarin --- doc/manual/src/contributing/hacking.md | 2 +- doc/manual/src/installation/env-variables.md | 4 ++-- doc/manual/src/installation/installing-binary.md | 8 ++++---- doc/manual/src/quick-start.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/manual/src/contributing/hacking.md b/doc/manual/src/contributing/hacking.md index e2046acc8..53f49602b 100644 --- a/doc/manual/src/contributing/hacking.md +++ b/doc/manual/src/contributing/hacking.md @@ -219,7 +219,7 @@ After the CI run completes, you can check the output to extract the installer UR 5. To generate an install command, plug this `install_url` and your GitHub username into this template: ```console - sh <(curl -L ) --tarball-url-prefix https://-nix-install-tests.cachix.org/serve + curl -L | sh -s -- --tarball-url-prefix https://-nix-install-tests.cachix.org/serve ```