diff options
author | Samir Talwar <samir@noodlesandwich.com> | 2020-06-18 10:29:24 +0200 |
---|---|---|
committer | Samir Talwar <samir@noodlesandwich.com> | 2020-06-18 10:29:24 +0200 |
commit | 9069759767cf1821578be8006cda52ee53ecd427 (patch) | |
tree | 7f0687761dd2a89c87ad1632fd3ea275d37d8c7f /doc/manual/introduction | |
parent | d1e0627cea92a530eb4a7fa6de13b211830eafe4 (diff) |
Instruct the user to follow redirects when installing Nix.
Nix installation now requires following redirects using `curl -L`. This
is currently represented on the [Nix download page][] but not in the
manual. This change updates the manual to reflect this.
Using `curl` without the `-L` flag results in an empty body, making
installation a no-op.
[Nix download page]: https://nixos.org/download.html
Diffstat (limited to 'doc/manual/introduction')
-rw-r--r-- | doc/manual/introduction/quick-start.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/introduction/quick-start.xml b/doc/manual/introduction/quick-start.xml index 1ce6c8d50..1992c14ed 100644 --- a/doc/manual/introduction/quick-start.xml +++ b/doc/manual/introduction/quick-start.xml @@ -15,7 +15,7 @@ to subsequent chapters.</para> <step><para>Install single-user Nix by running the following: <screen> -$ bash <(curl https://nixos.org/nix/install) +$ bash <(curl -L https://nixos.org/nix/install) </screen> This will install Nix in <filename>/nix</filename>. The install script |